Skip to content

Commit 38e5117

Browse files
Update changelogs from fern repo (#970)
Co-authored-by: Swimburger <[email protected]>
1 parent 03963c2 commit 38e5117

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

fern/products/cli-api-reference/cli-changelog/2025-09-24.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.81.0
2+
**`(feat):`** Control how type references are wrapped when they refer to nullable schemas using the new `wrap-references-to-nullable-in-optional` setting:
3+
- `true`: When a type reference points to a nullable schema, it will be wrapped in `optional<>`.
4+
- `false`: When a type reference points to a nullable schema, it will be wrapped in `nullable<>`.
5+
The default is `true`.
6+
7+
8+
**`(feat):`** Add new `coerce-optional-schemas-to-nullable` setting to control how optional schemas are treated:
9+
- `true`: Optional schemas will be coerced to nullable, resulting in `nullable<T>`.
10+
- `false`: Optional schemas will remain as `optional<T>`.
11+
The default is `true`.
12+
13+
14+
**`(feat):`** Add type for nullable schema examples.
15+
If a schema is nullable, examples for its inner type will be parsed or generated, or `null` will be used as an example if no inner examples are available.
16+
17+
118
## 0.80.2
219
**`(chore):`** Update migrations for go to support IRv60.
320

0 commit comments

Comments
 (0)