From d8891b4bbd884bf63afec031e3628f034f8e18c5 Mon Sep 17 00:00:00 2001 From: santoshpulluri Date: Thu, 18 Dec 2025 20:49:18 +0530 Subject: [PATCH] Update Changelog, version and upgrade Go --- .go-version | 2 +- CHANGELOG.md | 5 +++++ go.mod | 2 +- integration-tests/go.mod | 2 +- pkg/version/version.go | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.go-version b/.go-version index 5bb76b57..b45fe310 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.25.3 +1.25.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ca9399..2a54e69f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.8.7 (December 18, 2025) +SECURITY: + +* Add microdnf upgrade in dockerfile to include future security fixes [[GH-932](https://github.com/hashicorp/consul-dataplane/pull/932)] + ## 1.8.3 (October 28, 2025) IMPROVEMENTS: diff --git a/go.mod b/go.mod index 585527a3..2b6693df 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/consul-dataplane -go 1.25.3 +go 1.25.5 require ( dario.cat/mergo v1.0.0 diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 9a59ffb5..c213e16a 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/consul-dataplane/integration-tests -go 1.25.3 +go 1.25.5 require ( github.com/docker/docker v27.3.1+incompatible diff --git a/pkg/version/version.go b/pkg/version/version.go index f4cb26be..8657ba31 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -22,7 +22,7 @@ var ( // 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 // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" ) // GetHumanVersion composes the parts of the version in a way that's suitable