diff --git a/fern/products/cli-api-reference/cli-changelog/2026-08-24.mdx b/fern/products/cli-api-reference/cli-changelog/2026-08-24.mdx index 0ffb8477f7..81e05449a1 100644 --- a/fern/products/cli-api-reference/cli-changelog/2026-08-24.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2026-08-24.mdx @@ -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. diff --git a/fern/products/sdks/generators/csharp/changelog/2026-08-24.mdx b/fern/products/sdks/generators/csharp/changelog/2026-08-24.mdx new file mode 100644 index 0000000000..6af2dca5cb --- /dev/null +++ b/fern/products/sdks/generators/csharp/changelog/2026-08-24.mdx @@ -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. + + diff --git a/fern/products/sdks/generators/typescript/changelog/2026-08-24.mdx b/fern/products/sdks/generators/typescript/changelog/2026-08-24.mdx new file mode 100644 index 0000000000..4afe8224a9 --- /dev/null +++ b/fern/products/sdks/generators/typescript/changelog/2026-08-24.mdx @@ -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. + +