From 5fb0c9636074d7dbf6de2e566f08cdf5d75242c9 Mon Sep 17 00:00:00 2001 From: fern-support <126544928+fern-support@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:50:44 +0000 Subject: [PATCH] update changelogs --- .../cli-api-reference/cli-changelog/2026-03-26.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/fern/products/cli-api-reference/cli-changelog/2026-03-26.mdx b/fern/products/cli-api-reference/cli-changelog/2026-03-26.mdx index 1e4274e63..df1c51e8d 100644 --- a/fern/products/cli-api-reference/cli-changelog/2026-03-26.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2026-03-26.mdx @@ -1,3 +1,15 @@ +## 4.46.2 +**`(fix):`** Fix Go SDK auto-versioning returning incorrect versions for modules with +major version >= 2. The Go module proxy treats `github.com/owner/repo` and +`github.com/owner/repo/v2` as separate modules, but `getGoPackageName()` +only constructed the base path without the `/vN` suffix. This caused the +version resolver to find ancient v0.x versions instead of the current v2.x+ +versions, producing wrong `sdkVersion` values in `.fern/metadata.json` and +incorrect module paths in generated code. The Go proxy lookup now probes +`/v2` through `/v10` in parallel to discover the highest published major +version. + + ## 4.46.0 **`(feat):`** Add `check.rules` to `docs.yml` to configure severities for selected docs validation rules, including OpenAPI example validation, broken links,