From 511ab9051d53a2e15288efc4e9f3d45156490ea7 Mon Sep 17 00:00:00 2001 From: JMGoldsmith Date: Fri, 3 Oct 2025 11:19:29 +0200 Subject: [PATCH 1/3] adding notice for gomod issue --- .../important-changes/summary-tables/1_20.mdx | 1 + .../content/docs/updates/important-changes.mdx | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/content/vault/global/partials/important-changes/summary-tables/1_20.mdx b/content/vault/global/partials/important-changes/summary-tables/1_20.mdx index 9508e53197..4b03ba39b9 100644 --- a/content/vault/global/partials/important-changes/summary-tables/1_20.mdx +++ b/content/vault/global/partials/important-changes/summary-tables/1_20.mdx @@ -6,6 +6,7 @@ Introduced | Recommendations | Edition | Change 1.20.0 | **Yes** | All | [Rekey cancellations use a nonce](/vault/docs/v1.20.x/updates/important-changes#rekey-cancel-nonce) 1.20.0 | No | All | [Auzre authentication requires bound group or service principal ID](/vault/docs/v1.20.x/updates/important-changes##azure-auth) 1.20.1 | **Yes** | All | [CVE-2025-6000: File audit devices cannot use executable file permissions](/vault/docs/v1.20.x/updates/important-changes#cve-2025-6000) +1.20.4 | **Yes** | CE | [Go mod tidy command fails on the community edition](/vault/docs/v1.20.x/updates/important-changes#go-mod-tidy) ### New behavior diff --git a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx index 03a7442d40..bfd1754c3b 100644 --- a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx +++ b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx @@ -128,6 +128,20 @@ If you use `file` audit devices: 1. Use non-executable file modes (e.g., 0644, 0666) for log files. +### Go mod tidy failures on community edition ((#go-mod-tidy)) + +| Change | Affected version | Vault edition | +|--------------|----------------------------------|---------------| +| New behavior | 1.20.4 | Community | + + +Unfortunately a private repo has been listed in the go.mod file. This will +cause the `go mod tidy` command to fail. + +#### Recommendation + +Either remove the line referencing `hashicorp/go-cmp` or build from main. + --- From 202998664d19a4294dfaa182c1d162efa2e37f9b Mon Sep 17 00:00:00 2001 From: JMGoldsmith Date: Mon, 6 Oct 2025 10:13:31 +0200 Subject: [PATCH 2/3] Update content/vault/v1.20.x/content/docs/updates/important-changes.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> --- .../vault/v1.20.x/content/docs/updates/important-changes.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx index bfd1754c3b..f445061faa 100644 --- a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx +++ b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx @@ -134,9 +134,8 @@ If you use `file` audit devices: |--------------|----------------------------------|---------------| | New behavior | 1.20.4 | Community | - -Unfortunately a private repo has been listed in the go.mod file. This will -cause the `go mod tidy` command to fail. +The `go.mod` file lists a private repo that causes the `go mod tidy` +command to fail. #### Recommendation From 897483e94773768468557df3569cdcd8591825eb Mon Sep 17 00:00:00 2001 From: JMGoldsmith Date: Mon, 6 Oct 2025 10:13:40 +0200 Subject: [PATCH 3/3] Update content/vault/v1.20.x/content/docs/updates/important-changes.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> --- .../vault/v1.20.x/content/docs/updates/important-changes.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx index f445061faa..9cc87807e1 100644 --- a/content/vault/v1.20.x/content/docs/updates/important-changes.mdx +++ b/content/vault/v1.20.x/content/docs/updates/important-changes.mdx @@ -139,7 +139,8 @@ command to fail. #### Recommendation -Either remove the line referencing `hashicorp/go-cmp` or build from main. +Update the `go.mod` file to remove the line referencing +`hashicorp/go-cmp` or build from `main`. ---