From 417fdbc8002d2239a8a4417249c26d961a3b4d9f Mon Sep 17 00:00:00 2001 From: Ronald Ekambi Date: Wed, 5 Apr 2023 12:34:11 -0400 Subject: [PATCH 1/2] Update changelog for v0.31.0 --- CHANGELOG.md | 12 ++++++++++++ version/version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 675dfa7b6..a4b8789f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v0.31.0 (Apr 05, 2023) + +IMPROVEMENTS: + +* Added `ExtFuncMap` to allow external functions to be passed to the template. This gives users ability to add functions to the library and selective opaque existing ones. [1708](https://github.com/hashicorp/consul-template/pull/1708) +* Vault: add new configuration option `vault-client-user-agent`, when set consul-template will use the set `User-Agent` when making requests to vault. This change is being made as part of a broader effort for Vault Agent to send its version as part of a User-Agent string in requests to Vault. Agent will then consume the latest version of consul-template, then use this new config to set the correct `User-Agent`. [GH-1725](https://github.com/hashicorp/consul-template/pull/1725) +* Upgrade golang.org/x/net from 0.4.0 to 0.7.0. [GH-1711](https://github.com/hashicorp/consul-template/pull/1711) +* Upgrade Sprig from v2 to v3. [GH-1699](https://github.com/hashicorp/consul-template/pull/1699/files) +* Upgrage github.com/stretchr/testify from 1.8.1 to 1.8.2 [1726](https://github.com/hashicorp/consul-template/pull/1726) +* Add copyright headers to file for compliance. [GH-1721](https://github.com/hashicorp/consul-template/pull/1721) +* Improve use of inclusive language [GH-1731](https://github.com/hashicorp/consul-template/pull/1731) + ## v0.30.0 (Jan 09, 2023) IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index 266e3e03b..dfe558c3c 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ package version import "fmt" const ( - Version = "0.30.0" + Version = "0.30.1" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) ) From 48feff2cb3b451295d79fa288c7b335daee25f83 Mon Sep 17 00:00:00 2001 From: Ronald Ekambi Date: Wed, 5 Apr 2023 17:20:54 -0400 Subject: [PATCH 2/2] fix version --- CHANGELOG.md | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4b8789f7..3cad1a426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.31.0 (Apr 05, 2023) +## v0.31.0 (Apr 06, 2023) IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index dfe558c3c..4426d128b 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ package version import "fmt" const ( - Version = "0.30.1" + Version = "0.31.0" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )