-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cli): Handle OpenAPI type arrays better (#5499)
Handle OpenAPI type arrays better --------- Co-authored-by: Swimburger <[email protected]>
- Loading branch information
1 parent
b679c79
commit e8900d0
Showing
12 changed files
with
3,428 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## 0.46.3 | ||
**`(fix):`** The Fern CLI now supports generating examples for streaming SSE (server-sent-event) | ||
endpoints. | ||
endpoints. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## 0.46.5 | ||
**`(fix):`** The OpenAPI parser now deduplicates headers that appear in both security schemes and | ||
**`(fix):`** The OpenAPI parser now deduplicates headers that appear in both security schemes and | ||
operation-level headers to avoid duplicate header declarations. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## 0.46.6 | ||
**`(fix):`** The audiences property on WebSocket channels is now respected when filtering | ||
**`(fix):`** The audiences property on WebSocket channels is now respected when filtering | ||
the IR graph based on configured audiences. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## 0.46.8 | ||
**`(fix):`** The CLI now auto generates SSE and JSON Streaming examples even if those are | ||
**`(fix):`** The CLI now auto generates SSE and JSON Streaming examples even if those are | ||
not provided in the OpenAPI Spec or Fern Definition. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## 0.46.16 | ||
**`(fix):`** Improve parsing of OpenAPI schemas with an array in the `type` property. | ||
* If the array contains `"null"`, it is interpreted as nullable, and removed from the array. | ||
* If there is only a single item in the array (after removing "null"), it previously defaulted to `unknown`, but now the specified type is used. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.