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
7 changes: 7 additions & 0 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ container {
dependencies = true
alpine_secdb = true
secrets = true
triage {
suppress {
vulnerabilites = [
"CVE-2024-58251", # fix unavailable at time of writing
]
}
}
}

binary {
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.41.2 (September 19, 2025)

IMPROVEMENTS:
* Enhance File Sandbox Security [GH-2083](https://github.com/hashicorp/consul-template/pull/2052)
* update: go version to 1.25 [GH-2089](https://github.com/hashicorp/consul-template/pull/2052)

# 0.41.0 (June 5, 2025)

IMPROVEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package version
import "fmt"

const (
Version = "0.41.0"
Version = "0.41.2"
VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash)
)

Expand Down
Loading