Changelog


0.46.8

(fix): The CLI now auto generates SSE and JSON Streaming examples even if those are not provided in the OpenAPI Spec or Fern Definition.



0.46.5

(fix): The OpenAPI parser now deduplicates headers that appear in both security schemes and operation-level headers to avoid duplicate header declarations.




0.46.2

(feat): The Fern CLI now supports parsing a logo option from your frontmatter. If you would like to override logo on a specific page you can do so by adding the following:

intro.mdx
1---
2logo: /path/to/my/logo
3---

or

intro.mdx
1---
2logo:
3 light: /path/to/my/light/logo
4 dark: /path/to/my/dark/logo
5---