diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a6e444ea..d364904dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v0.29.3 (Sept 30, 2022) + +IMPROVEMENTS: +* Vault token management refactor to increase encapsulation and enable testing. [[GH-1645](https://github.com/hashicorp/consul-template/pull/1645)] + +BUG FIXES: +* Log child process successful exits at INFO level (not ERR). [[GH-1649](https://github.com/hashicorp/consul-template/pull/1649), [GH-1282](https://github.com/hashicorp/consul-template/issues/1282)] +* Fix reading vault agent token in wrapped format [[GH-1498](https://github.com/hashicorp/consul-template/issues/1498)] +* Fix issue with transient goroutine leak causing unnecessary memory growth. [[GH-1644](https://github.com/hashicorp/consul-template/pull/1644)] +* Fix issue with pkiCerts failing if cert file is moved. [[GH-1639](https://github.com/hashicorp/consul-template/pull/1639)] + + ## v0.29.2 (Aug 16, 2022) IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index 9b8f2afb4..9bd6f8e1d 100644 --- a/version/version.go +++ b/version/version.go @@ -3,7 +3,7 @@ package version import "fmt" const ( - Version = "0.29.2" + Version = "0.29.3" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )