summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBazaah2021-09-28 16:07:28 +0000
committerBazaah2021-09-28 16:07:28 +0000
commit1f84dd134fe56173c79926f14b0a19b26366a7ec (patch)
tree8cb727851ce864ca670597a54428b04b15785a97
parentf6e7f8782eb73e399eb959f7b39c92dcae1f3371 (diff)
downloadaur-1f84dd134fe56173c79926f14b0a19b26366a7ec.tar.gz
consul-template-bin: 0.27.0_1 -> 0.27.1_1
- update CHANGELOG - regenerate .SRCINFO
-rw-r--r--.SRCINFO14
-rw-r--r--CHANGELOG25
-rw-r--r--PKGBUILD8
3 files changed, 24 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 593673c1dd1d..5e0e320de71a 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.27.0
+ pkgver = 0.27.1
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.27.0.zip::https://releases.hashicorp.com/consul-template/0.27.0/consul-template_0.27.0_linux_amd64.zip
- sha256sums_x86_64 = 0d319977885e0f44562cc5f78e225d8431499cc3a95cd1b3fe560df8556bf64a
- source_i686 = consul-template-bin-0.27.0.zip::https://releases.hashicorp.com/consul-template/0.27.0/consul-template_0.27.0_linux_386.zip
- sha256sums_i686 = 3da343d29d7c4df3a92c8a639395cb74584a56b998632d066597078b0dd9cfc8
- source_aarch64 = consul-template-bin-0.27.0.zip::https://releases.hashicorp.com/consul-template/0.27.0/consul-template_0.27.0_linux_arm64.zip
- sha256sums_aarch64 = 5442dd9ddbd83a1cf059a180681907d74ba7da9bde84c3264bdc7f975190329e
+ source_x86_64 = consul-template-bin-0.27.1.zip::https://releases.hashicorp.com/consul-template/0.27.1/consul-template_0.27.1_linux_amd64.zip
+ sha256sums_x86_64 = db340b7555105d004caf8fad10e1d53ee0bd2320572c4560387279e92490f807
+ source_i686 = consul-template-bin-0.27.1.zip::https://releases.hashicorp.com/consul-template/0.27.1/consul-template_0.27.1_linux_386.zip
+ sha256sums_i686 = 0f2f1db2bac85a0ff7e0a3bc951b362f6bd97cf06d2fc0fecdba70a3881c1950
+ source_aarch64 = consul-template-bin-0.27.1.zip::https://releases.hashicorp.com/consul-template/0.27.1/consul-template_0.27.1_linux_arm64.zip
+ sha256sums_aarch64 = 210ddabf1c02e0cc45ceaf0d0e0918a33704ea6c20fa9de8b5e3806e3dd35729
pkgname = consul-template-bin
diff --git a/CHANGELOG b/CHANGELOG
index aaae4379d607..6e68135e3a55 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,15 +1,16 @@
-## v0.27.0 (Aug 16, 2021)
-
-BREAKING CHANGES:
-* All command execution calls are now made (on *nix systems) using a shell command call ('/bin/sh -c ...') with [process group](https://man7.org/linux/man-pages/man2/setpgid.2.html) set to ensure all signals are propagated to the called commands. This was done to eliminate the need for parsing the shell command as it was a continual source of bugs. Windows systems currently only support single command calls because of no (known) 'sh -c' equivalent on Windows. [[GH-1496](https://github.com/hashicorp/consul-template/pull/1496), [GH-1494](https://github.com/hashicorp/consul-template/pull/1494)]
+## v0.27.1 (Sep 22, 2021)
IMPROVEMENTS:
-* New Docker Image. Similar to old Alpine image but modernized and simplified [[GH-1481](https://github.com/hashicorp/consul-template/issues/1481), [GH-1484](https://github.com/hashicorp/consul-template/pull/1484)]
-* New, more obvious, log level environment variable [[GH-1383](https://github.com/hashicorp/consul-template/pull/1383)]
-* New 'writeToFile' template function [[GH-1495](https://github.com/hashicorp/consul-template/pull/1495), [GH-1077](https://github.com/hashicorp/consul-template/issues/1077)]
-* New mergeMap and mergeMapWithOverride template functions [[GH-1500](https://github.com/hashicorp/consul-template/pull/1500), [GH-1499](https://github.com/hashicorp/consul-template/issues/1499)].
-
-BUG FIXES:
-* Ignore SIGURG signals by default [[GH-1486](https://github.com/hashicorp/consul-template/issues/1486), [GH-1487](https://github.com/hashicorp/consul-template/pull/1487)]
-* Fix issue with command argument parsing when using sub-shell calls [[GH-1482](https://github.com/hashicorp/consul-template/issues/1482)]
+
+* Updated command execution on \*nix systems to call the command directly,
+ without the `sh -c` wrapping shell command, *only* in cases where the command
+ is a single word (no spaces). This allows docker to run in environments (like
+ a minimal docker image) where there is no shell (`sh`). Multi-word commands
+ will continue to use the wrapping shell call.
+ [[GH-1509](https://github.com/hashicorp/consul-template/pull/1509),
+ [GH-1508](https://github.com/hashicorp/consul-template/issues/1508)]
+
+SECURITY:
+
+* Updated golang.or/x/crypto dependency for CVE-2020-29652. [[GH-1507](https://github.com/hashicorp/consul-template/issues/1507)]
diff --git a/PKGBUILD b/PKGBUILD
index 205b9fabddad..01b7da8fbd4b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Paul Stemmet <aur@luxolus.com>
pkgname=consul-template-bin
-pkgver=0.27.0
+pkgver=0.27.1
pkgrel=1
pkgdesc="Template rendering, notifier, and supervisor for HashiCorp Consul and Vault data"
arch=('x86_64' 'i686' 'aarch64')
@@ -16,9 +16,9 @@ source_x86_64=(${pkgname}-${pkgver}.zip::https://releases.hashicorp.com/consul-t
source_i686=(${pkgname}-${pkgver}.zip::https://releases.hashicorp.com/consul-template/${pkgver}/consul-template_${pkgver}_linux_386.zip)
source_aarch64=(${pkgname}-${pkgver}.zip::https://releases.hashicorp.com/consul-template/${pkgver}/consul-template_${pkgver}_linux_arm64.zip)
sha256sums=(3e678bbc1818519df21741f41b9bc60fe13c1ae0f09b1b1f707e041130484268 6fb7f113a9c529bcbeaec00835d86e6c99502848766c4286e6bc48c7f8a0a347 91274ea60b8c8f8511427f9ff85a82d92c80755668bae11c2e3fd00dbf440a9c)
-sha256sums_x86_64=(0d319977885e0f44562cc5f78e225d8431499cc3a95cd1b3fe560df8556bf64a)
-sha256sums_i686=(3da343d29d7c4df3a92c8a639395cb74584a56b998632d066597078b0dd9cfc8)
-sha256sums_aarch64=(5442dd9ddbd83a1cf059a180681907d74ba7da9bde84c3264bdc7f975190329e)
+sha256sums_x86_64=(db340b7555105d004caf8fad10e1d53ee0bd2320572c4560387279e92490f807)
+sha256sums_i686=(0f2f1db2bac85a0ff7e0a3bc951b362f6bd97cf06d2fc0fecdba70a3881c1950)
+sha256sums_aarch64=(210ddabf1c02e0cc45ceaf0d0e0918a33704ea6c20fa9de8b5e3806e3dd35729)
package() {