From ba32a08f9ca0acbe7ad140f84ebc919459b20a68 Mon Sep 17 00:00:00 2001 From: John Murret Date: Fri, 1 Nov 2024 13:25:04 -0600 Subject: [PATCH] Stage release 1.5.4 (#664) * Stage release 1.5.4 * Update CHANGELOG.md * Apply suggestions from code review Co-authored-by: Nathan Coleman * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Nathan Coleman --- CHANGELOG.md | 20 ++++++++++++++++++++ Makefile | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49289561..324b021e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## 1.5.4 (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)] +* Upgrade to support Envoy `1.29.10`. [[GH-660](https://github.com/hashicorp/consul-dataplane/pull/660)] + +## 1.5.3 (August 30, 2024) + +IMPROVEMENTS: + +* Update `github.com/hashicorp/consul/proto-public` to v0.6.2. [[GH-585](https://github.com/hashicorp/consul-dataplane/pull/585)] +* Update multiple dependencies. [[GH-602](https://github.com/hashicorp/consul-dataplane/pull/602)] +* Update ubi base image to `ubi9-minimal:9.4`. [[GH-602](https://github.com/hashicorp/consul-dataplane/pull/602)] + +## 1.5.2 (August 28, 2024) + +Release redacted, use `1.5.3` + ## 1.5.1 (July 15, 2024) SECURITY: diff --git a/Makefile b/Makefile index ada7c187..1011e386 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ copy-bootstrap-config: ## copy bootstrap config .PHONY: changelog changelog: ## build change log ifdef DP_LAST_RELEASE_GIT_TAG - @changelog-build \ + 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 \