summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBazaah2023-05-30 17:47:04 +0000
committerBazaah2023-05-30 17:47:04 +0000
commit67ab15dfb0d3800eb7541329f070f49e67f23302 (patch)
tree021158d54a6453ad6c3c8f409245b779c923775c
parent4975e9ce647123aad7e34152308c8562fdd4bace (diff)
parent23a5705169b992584ae39d30f8b5547d2d90c750 (diff)
downloadaur-67ab15dfb0d3800eb7541329f070f49e67f23302.tar.gz
merge: master <--- feature/v0.32.0
* HEAD | \ | * 23a5705 <github@luxolus.com> consul-template-bin: 0.30.0_1 -> 0.32.0_1 | / | master Signed-off-by: Bazaah <github@luxolus.com>
-rw-r--r--.SRCINFO8
-rw-r--r--CHANGELOG23
-rw-r--r--PKGBUILD8
3 files changed, 25 insertions, 14 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9a1ae7a49e8f..edc92f550b1d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = consul-template-bin
pkgdesc = Template rendering, notifier, and supervisor for HashiCorp Consul and Vault data
- pkgver = 0.30.0
+ pkgver = 0.32.0
pkgrel = 1
url = https://github.com/hashicorp/consul-template
changelog = CHANGELOG
@@ -20,11 +20,11 @@ pkgbase = consul-template-bin
sha256sums = 3e678bbc1818519df21741f41b9bc60fe13c1ae0f09b1b1f707e041130484268
sha256sums = 6fb7f113a9c529bcbeaec00835d86e6c99502848766c4286e6bc48c7f8a0a347
sha256sums = 91274ea60b8c8f8511427f9ff85a82d92c80755668bae11c2e3fd00dbf440a9c
- source_x86_64 = consul-template-bin-0.30.0.zip::https://releases.hashicorp.com/consul-template/0.30.0/consul-template_0.30.0_linux_amd64.zip
+ source_x86_64 = consul-template-bin-0.32.0.zip::https://releases.hashicorp.com/consul-template/0.32.0/consul-template_0.32.0_linux_amd64.zip
sha256sums_x86_64 = c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212
- source_i686 = consul-template-bin-0.30.0.zip::https://releases.hashicorp.com/consul-template/0.30.0/consul-template_0.30.0_linux_386.zip
+ source_i686 = consul-template-bin-0.32.0.zip::https://releases.hashicorp.com/consul-template/0.32.0/consul-template_0.32.0_linux_386.zip
sha256sums_i686 = c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212
- source_aarch64 = consul-template-bin-0.30.0.zip::https://releases.hashicorp.com/consul-template/0.30.0/consul-template_0.30.0_linux_arm64.zip
+ source_aarch64 = consul-template-bin-0.32.0.zip::https://releases.hashicorp.com/consul-template/0.32.0/consul-template_0.32.0_linux_arm64.zip
sha256sums_aarch64 = c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212
pkgname = consul-template-bin
diff --git a/CHANGELOG b/CHANGELOG
index 82d3fc4e9d01..d98e0d622a66 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,9 +1,20 @@
-## v0.30.0 (Jan 09, 2023)
+## v0.32.0 (May 18, 2023)
IMPROVEMENTS:
-* option to exit with an error upon failure to look up data (instead of blocking and waiting for it). [[GH-1695](https://github.com/hashicorp/consul-template/pull/1695), [GH-1637](https://github.com/hashicorp/consul-template/issues/1637)]
-* tweak defaults for performance improvements [[GH-1697](https://github.com/hashicorp/consul-template/pull/1697), [GH-1603](https://github.com/hashicorp/consul-template/issues/1603)]
+* Add support for Vault agent environment variables. [GH-1741](https://github.com/hashicorp/consul-template/pull/1741)
+* Upgrade hashicorp/vault/api from 1.8.2 to 1.9.1. [GH-1743](https://github.com/hashicorp/consul-template/pull/1743)
-BUG FIXES:
-* properly respect reload/kill configured signals [[GH-1690](https://github.com/hashicorp/consul-template/pull/1690), [GH-1671](https://github.com/hashicorp/consul-template/issues/1671)]
-* Fix 'toTitle' function for a better support for word boundaries and unicode punctuation [[GH-1678](https://github.com/hashicorp/consul-template/pull/1678)]
+REPO MAINTENANCE:
+* remove repo-specific codeql action, in favor of centralized job. [GH-1740](https://github.com/hashicorp/consul-template/pull/1740/files)
+
+## v0.31.0 (Apr 06, 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)
diff --git a/PKGBUILD b/PKGBUILD
index 083d308f23ca..3925c2a66b76 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Paul Stemmet <aur@luxolus.com>
pkgname=consul-template-bin
-pkgver=0.30.0
+pkgver=0.32.0
pkgrel=1
pkgdesc="Template rendering, notifier, and supervisor for HashiCorp Consul and Vault data"
arch=('x86_64' 'i686' 'aarch64')
@@ -18,9 +18,9 @@ source_aarch64=(${pkgname}-${pkgver}.zip::https://releases.hashicorp.com/consul-
sha256sums=('3e678bbc1818519df21741f41b9bc60fe13c1ae0f09b1b1f707e041130484268'
'6fb7f113a9c529bcbeaec00835d86e6c99502848766c4286e6bc48c7f8a0a347'
'91274ea60b8c8f8511427f9ff85a82d92c80755668bae11c2e3fd00dbf440a9c')
-sha256sums_x86_64=('c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212')
-sha256sums_i686=('c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212')
-sha256sums_aarch64=('c78db0f0eecc4d314a5130e3b4c8bd17086c6cd9080c4caf69c606de67cbe212')
+sha256sums_x86_64=('eda83e12a4618929a3ec0a49b11a2823b6201c9ae64e5a15161fd63313caf88b')
+sha256sums_i686=('eda83e12a4618929a3ec0a49b11a2823b6201c9ae64e5a15161fd63313caf88b')
+sha256sums_aarch64=('eda83e12a4618929a3ec0a49b11a2823b6201c9ae64e5a15161fd63313caf88b')
package() {