diff --git a/fern/products/cli-api-reference/cli-changelog/2025-11-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-11-05.mdx index 23eb55165..f2073433a 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-11-05.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-11-05.mdx @@ -1,3 +1,7 @@ +## 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.