From e81d573a481579a39e6bd0f708ae42da5476ae1d Mon Sep 17 00:00:00 2001 From: Swimburger <3382717+Swimburger@users.noreply.github.com> Date: Thu, 2 Oct 2025 22:10:29 +0000 Subject: [PATCH] update changelogs --- .../cli-changelog/2025-10-02.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/fern/products/cli-api-reference/cli-changelog/2025-10-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-10-02.mdx index 8cd68179d..a3a03f295 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-10-02.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-10-02.mdx @@ -1,3 +1,21 @@ +## 0.84.4 +**`(fix):`** Fix an issue where some optional properties were converted to required in the OpenAPI parser to Fern Definition. + + +**`(fix):`** Fix an issue where some property descriptions were not being carried over in the OpenAPI parser to Fern Definition. + + +**`(fix):`** Generate more compact Fern Definition when only a type is provided for optional properties. +```yml +# Before +prop: + type: optional + +# After +prop: optional +``` + + ## 0.84.3 **`(fix):`** Fix CLI files colliding when running multiple generators in the same group in local generation.