Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 5.101.2
**`(fix):`** Fill in path parameters that a user-specified example omits, using the same values example
autogeneration produces (or the parameter's client default). Previously such an example
generated snippets that omitted a required argument or passed `undefined`, and an example URL
containing `undefined`.


## 5.101.1
**`(fix):`** Make global theme asset paths stable across publishes of the same organization and theme.

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 2.83.2
**`(fix):`** Stop dropping the examples of endpoints whose request body is bytes or a file upload. The IR's
`ExampleRequestBody` cannot carry those bodies, so such examples read as bodyless and the
endpoint lost its snippets and generated tests.


Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 3.88.2
**`(fix):`** Stop dropping the examples of endpoints whose request body is bytes or a file upload. The IR's
`ExampleRequestBody` cannot carry those bodies, so such examples read as bodyless and the
endpoint lost its `reference.md` section, snippets and docs comments.


**`(fix):`** Positional path parameters that an example does not supply are now rendered with their
`client-default` value instead of `undefined`, so generated snippets typecheck.


Loading