0.108.0

(feat): Add position-based sorting for folder navigation in docs.yml. Pages can now control their order using a position field in frontmatter. Pages with position values sort first (ascending), then pages without position sort alphabetically.

Example:

1---
2position: 1
3---
4# Getting Started

(fix): Fix hot-reload in fern docs dev to detect frontmatter position changes. Previously, changing position values required restarting the dev server. Now position changes, file additions, and file deletions trigger automatic navigation rebuilds.

0.107.11

(fix): Fix AsyncAPI v3 message parsing where channel messages were not being included in generated WebSocket clients. Messages defined in AsyncAPI v3 specs are now correctly resolved and included in the SDK.

0.107.10

(chore): Update migration logic to support new generator versions with ir v61.

0.107.9

(fix): Implement variant ranking in anyOf/oneOf example generation to prefer variants that use provided examples without coercion over variants that require coercion or generate fallback examples. When a schema has anyOf: [number, string] with examples: [“2500”], the string variant is now preferred since it can use the provided example as-is, rather than the number variant which would coerce it to a number.

0.107.8

(fix): Improve anyOf/oneOf example generation to prefer variants with examples and use schema-level examples when available. This addresses cases where unions with multiple types were generating fallback examples instead of using provided examples.

0.107.6

(fix): Silence validation logs in fern docs dev unless there is a validation error