From 863d3f3f4e0822a8ce603508299fe590c7808f56 Mon Sep 17 00:00:00 2001 From: dsinghvi <10870189+dsinghvi@users.noreply.github.com> Date: Thu, 23 Apr 2026 17:54:58 +0000 Subject: [PATCH] update changelogs --- .../cli-api-reference/cli-changelog/2026-04-23.mdx | 7 +++++++ .../products/sdks/generators/go/changelog/2026-04-23.mdx | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 fern/products/sdks/generators/go/changelog/2026-04-23.mdx diff --git a/fern/products/cli-api-reference/cli-changelog/2026-04-23.mdx b/fern/products/cli-api-reference/cli-changelog/2026-04-23.mdx index 79e2513a0..b525a9519 100644 --- a/fern/products/cli-api-reference/cli-changelog/2026-04-23.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2026-04-23.mdx @@ -1,3 +1,10 @@ +## 4.91.0 +**`(internal):`** Remove the abandoned `@fern-api/docs-parsers` dependency from `@fern-api/docs-resolver` and drop +the hidden `fern fdr --v2` code path that was the only remaining consumer. The upstream +package was deleted from fern-platform in https://github.com/fern-api/fern-platform/pull/2420 +and hasn't been published since; removing it clears the transitive `uuid@9.0.1` from the lockfile. + + ## 4.90.0 **`(internal):`** Implement the FER-9980 autoversion pipeline. A new `GenerationCommitStep` + `AutoVersionStep` run between the `[fern-generated]` commit and replay diff --git a/fern/products/sdks/generators/go/changelog/2026-04-23.mdx b/fern/products/sdks/generators/go/changelog/2026-04-23.mdx new file mode 100644 index 000000000..b93213ad9 --- /dev/null +++ b/fern/products/sdks/generators/go/changelog/2026-04-23.mdx @@ -0,0 +1,9 @@ +## 1.36.0 +**`(feat):`** Support omitting username or password from basic auth when configured via +`usernameOmit`/`passwordOmit` in the IR. When a field is omitted, it is +removed from the SDK's public API (`WithBasicAuth` takes fewer arguments) +and an empty string is used internally for the auth header encoding. When +both fields are omitted, the `WithBasicAuth` call and Authorization header +are skipped entirely. + +