diff --git a/fern/products/cli-api-reference/cli-changelog/2026-06-12.mdx b/fern/products/cli-api-reference/cli-changelog/2026-06-12.mdx index b4c28161a..606010bf5 100644 --- a/fern/products/cli-api-reference/cli-changelog/2026-06-12.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2026-06-12.mdx @@ -1,3 +1,13 @@ +## 5.47.3 +**`(fix):`** Use string literal for `this.name` in error classes instead of +`this.constructor.name`, which gets mangled by minifiers. + + +**`(fix):`** Fix text/* content types (e.g. text/csv, text/xml) being silently converted +to text/plain during OpenAPI export. The original media type is now preserved +through the IR via a new optional `contentType` field on `TextResponse`. + + ## 5.47.2 **`(fix):`** Stop dropping custom scalars in the GraphQL converter. Custom scalars (e.g. `DateTime`, `URL`, `EmailAddress`) are now emitted as named alias types in the `types` map with a stable diff --git a/fern/products/sdks/generators/typescript/changelog/2026-06-12.mdx b/fern/products/sdks/generators/typescript/changelog/2026-06-12.mdx index 80993030f..41d990a70 100644 --- a/fern/products/sdks/generators/typescript/changelog/2026-06-12.mdx +++ b/fern/products/sdks/generators/typescript/changelog/2026-06-12.mdx @@ -1,3 +1,8 @@ +## 3.72.2 +**`(fix):`** Use string literal for `this.name` in generated error classes instead of +`this.constructor.name`, which gets mangled by minifiers. + + ## 3.72.1 **`(chore):`** Bump bundled @fern-api/generator-cli to 0.9.39 (Replay 0.18.0) for more reliable customization detection during regeneration.