Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

The `go.mod` file lists a private repo that causes the `go mod tidy`
command to fail.

#### Recommendation

Update the `go.mod` file to remove the line referencing
`hashicorp/go-cmp` or build from `main`.

---


Expand Down
Loading