Skip to content

Commit 3431b94

Browse files
fern-supportgithub-actions[bot]
authored andcommitted
update changelogs
1 parent 8ae7d82 commit 3431b94

8 files changed

Lines changed: 41 additions & 15 deletions

File tree

fern/products/cli-api-reference/cli-changelog/2025-05-06.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
**`(feat):`** Support environment variable substitution in self-hosted mode for GitHub configurations.
1515

1616

17-
## 0.60.15
18-
**`(feat):`** Correctly support `readOnly` and `writeOnly` object properties during request and response example generation.
19-
20-
2117
## 0.60.14
2218
**`(fix):`** Dont clear tmp dir with generated code in self hosted mode.
2319

fern/products/cli-api-reference/cli-changelog/2025-05-15.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ a memory limit (--max-old-space-size=2048) to prevent out-of-memory errors durin
1616
as well as the corresponding line numbers originating the errors.
1717

1818

19-
## 0.61.12
20-
**`(feat):`** When you set `type-dates-as-strings` to `false` in the OpenAPI `settings` in _generators.yml_,
21-
schemas of type `string` with format `date` will be converted to a Fern `date` type, instead of a `string` type.
22-
23-
2419
## 0.61.11
2520
**`(fix):`** Fix an issue where a singular allOf circular reference would lead to an infinite loop in the v3 parser.
2621

fern/products/cli-api-reference/cli-changelog/2026-02-26.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 3.90.9
2+
**`(fix):`** Propagate `explode` field from OpenAPI query parameters through the old importer pipeline
3+
(OpenAPI IR → Fern Definition → Fern IR). Previously, `explode: false` on array query
4+
parameters was silently dropped, causing generated SDKs to use repeated keys instead of
5+
comma-separated values.
6+
7+
18
## 3.90.8
29
**`(fix):`** Treat JSON Schema `const` values as literal types in the IR regardless of the
310
`coerceEnumsToLiterals` setting. Previously, `const` was converted to a single-value
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## 0.61.12
2+
**`(feat):`** When you set `type-dates-as-strings` to `false` in the OpenAPI `settings` in _generators.yml_,
3+
schemas of type `string` with format `date` will be converted to a Fern `date` type, instead of a `string` type.
4+
5+
6+
## 0.60.15
7+
**`(feat):`** Correctly support `readOnly` and `writeOnly` object properties during request and response example generation.
8+
9+

fern/products/sdks/overview/python/changelog/2024-09-10.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
## 4.0.0-rc5
2-
**`(fix):`** Pydantic models now call update forward refs on non-union circular references. This
3-
prevents runtime errors in certain cases where types self reference itself through
4-
a union.
5-
6-
71
## 4.0.0-rc4
82
**`(fix):`** Pydantic models now call update forward refs on non-union circular references. This
93
prevents runtime errors in certain cases where types self reference itself through

fern/products/sdks/overview/python/changelog/2026-02-26.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 4.60.2
2+
**`(fix):`** Fix `explode: false` query parameter serialization for array types. When an OpenAPI spec
3+
sets `explode: false` on an array query parameter, the generated SDK now serializes values
4+
as comma-separated strings (e.g. `tags=A,B,C`) instead of repeated keys (e.g. `tags=A&tags=B&tags=C`).
5+
This applies to both regular and streaming endpoints.
6+
7+
18
## 4.60.1
29
**`(chore):`** Use generator-cli JS API directly instead of subprocess spawning.
310
Remove generator-cli from Docker image since it is now bundled via esbuild.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## 4.0.0-rc5
2+
**`(fix):`** Pydantic models now call update forward refs on non-union circular references. This
3+
prevents runtime errors in certain cases where types self reference itself through
4+
a union.
5+
6+

fern/products/sdks/overview/typescript/changelog/2026-02-26.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 3.52.0
2+
**`(feat):`** Enable `generateSubpackageExports` by default. Generated TypeScript SDKs now include
3+
subpackage export entries in `package.json`, allowing users to import subpackage clients
4+
directly (e.g., `import { FooClient } from '@acme/sdk/foo'`). This enables JavaScript
5+
bundlers to tree-shake unused subpackages, resulting in smaller bundle sizes.
6+
To opt out, explicitly set `generateSubpackageExports: false` in your generator config.
7+
8+
9+
**`(feat):`** Add tree-shaking smoke test to verify that importing a single subpackage produces a
10+
significantly smaller webpack bundle than importing the full SDK.
11+
12+
113
## 3.51.6
214
**`(chore):`** In downloadFiles mode, install only the configured formatter/linter
315
packages instead of the full dependency tree when outputting source files

0 commit comments

Comments
 (0)