diff --git a/CHANGELOG.md b/CHANGELOG.md index d6adaf1b..3736a6f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.1.13 (November 1, 2024) + +SECURITY: + +* Upgrade Go to use 1.22.7. This addresses CVE + [CVE-2024-34155](https://nvd.nist.gov/vuln/detail/CVE-2024-34155) [[GH-608](https://github.com/hashicorp/consul-dataplane/pull/608)] + ## 1.1.12 (July 15, 2024) SECURITY: diff --git a/Makefile b/Makefile index 123e7524..2e63dc23 100644 --- a/Makefile +++ b/Makefile @@ -123,8 +123,8 @@ copy-bootstrap-config: ## copy bootstrap config .PHONY: changelog changelog: ## build change log ifdef DP_LAST_RELEASE_GIT_TAG - @changelog-build \ - -last-release $(DP_LAST_RELEASE_GIT_TAG) \ + go run github.com/hashicorp/go-changelog/cmd/changelog-build@latest \ + -last-release $(DP_LAST_RELEASE_GIT_TAG) \ -entries-dir .changelog/ \ -changelog-template .changelog/changelog.tmpl \ -note-template .changelog/note.tmpl \ diff --git a/pkg/version/version.go b/pkg/version/version.go index 940f0dc2..5a9418e1 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -14,7 +14,7 @@ var ( // // Version must conform to the format expected by github.com/hashicorp/go-version // for tests to work. - Version = "1.1.13" + Version = "1.1.14" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release