From 1aa4e41d6517f11f121c3764ec11d2ae229e9f0e Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Fri, 12 Jul 2024 15:06:53 -0400 Subject: [PATCH] Prep for future release, 1.5.2 (#583) * Update version.go * Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ pkg/version/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98e15868..49289561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.5.1 (July 15, 2024) + +SECURITY: + +* Upgrade envoy version to 1.29.7 to address [CVE-2024-39305](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-39305) [[GH-578](https://github.com/hashicorp/consul-dataplane/pull/578)] +* Upgrade go version to address [CVE-2024-24791](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-24791) [[GH-573](https://github.com/hashicorp/consul-dataplane/pull/573)] + ## 1.5.0 (June 12, 2024) IMPROVEMENTS: diff --git a/pkg/version/version.go b/pkg/version/version.go index c3612cbd..223ac42c 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -17,7 +17,7 @@ var ( // // Version must conform to the format expected by github.com/hashicorp/go-version // for tests to work. - Version = "1.5.1" + Version = "1.5.2" // 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