You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fern/products/cli-api-reference/cli-changelog/2025-09-24.mdx
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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
+
1
18
## 0.80.2
2
19
**`(chore):`** Update migrations for go to support IRv60.
0 commit comments