From ed6651fba2ae1d2dbc30886bc0861fa1db55d7e8 Mon Sep 17 00:00:00 2001 From: thesandlord <8902396+thesandlord@users.noreply.github.com> Date: Mon, 14 Sep 2026 15:54:45 +0000 Subject: [PATCH] update changelogs --- .../cli-api-reference/cli-changelog/2026-09-14.mdx | 7 +++++++ .../sdks/generators/python/changelog/2026-09-14.mdx | 5 +++++ .../sdks/generators/typescript/changelog/2026-09-14.mdx | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 fern/products/cli-api-reference/cli-changelog/2026-09-14.mdx create mode 100644 fern/products/sdks/generators/python/changelog/2026-09-14.mdx create mode 100644 fern/products/sdks/generators/typescript/changelog/2026-09-14.mdx diff --git a/fern/products/cli-api-reference/cli-changelog/2026-09-14.mdx b/fern/products/cli-api-reference/cli-changelog/2026-09-14.mdx new file mode 100644 index 000000000..865894093 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2026-09-14.mdx @@ -0,0 +1,7 @@ +## 5.121.1 +**`(fix):`** `fern generate --local` without a `FERN_TOKEN` (and air-gapped remote generation) now enables +pagination and OAuth client generation by default instead of silently disabling them. Previously +the Python SDK's paginated endpoints returned a plain response object while the README documented +a pager, because the org lookup that enables these features was skipped. + + diff --git a/fern/products/sdks/generators/python/changelog/2026-09-14.mdx b/fern/products/sdks/generators/python/changelog/2026-09-14.mdx new file mode 100644 index 000000000..a47f7c53a --- /dev/null +++ b/fern/products/sdks/generators/python/changelog/2026-09-14.mdx @@ -0,0 +1,5 @@ +## 5.30.1 +**`(fix):`** The generated README only documents pagination (`SyncPager`, `iter_pages()`) when paginated +clients are actually generated, so the README and `list()` return types stay in sync. + + diff --git a/fern/products/sdks/generators/typescript/changelog/2026-09-14.mdx b/fern/products/sdks/generators/typescript/changelog/2026-09-14.mdx new file mode 100644 index 000000000..cf7a876ff --- /dev/null +++ b/fern/products/sdks/generators/typescript/changelog/2026-09-14.mdx @@ -0,0 +1,6 @@ +## 3.93.1 +**`(fix):`** The generated README now always includes a Pagination section (and pagination usage snippets) +when the API has paginated endpoints, matching the client which always returns `core.Page`. +Previously the section was dropped when the CLI ran without org information (e.g. `fern generate --local` without a `FERN_TOKEN`). + +