Skip to content

Commit 781ce19

Browse files
authored
Update CHANGELOG and version files for release 0.40.0 (#2022)
* Update CHANGELOG and version files * - Removing caching for post set up go step issue for CI workflow - Increasing timeout and verbosity for workflow logs - Fixed fail fast issue for two jobs in workflow to fail independently and avoid caching race conditions * Change version bump from patch to minor release
1 parent f33df88 commit 781ce19

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
name: Run test cases (with consul${{ matrix.consul-ent-tag }})
1616
runs-on: ${{ matrix.os }}
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
os: [ubuntu-latest]
2021
go: [^1]
@@ -27,6 +28,7 @@ jobs:
2728
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2829
with:
2930
go-version: ${{ matrix.go }}
31+
cache: false
3032

3133
- name: Install Consul${{ matrix.consul-ent-tag }}, Vault and Nomad for integration testing
3234
run: |

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 0.40.0 (February 14, 2025)
2+
3+
IMPROVEMENTS:
4+
* Bump github.com/hashicorp/go-retryablehttp from v0.7.2 to v0.7.7 due to CVE [GH-1967](https://github.com/hashicorp/consul-template/pull/1967)
5+
* Bump golang.org/x/net to v0.34.0 from v0.24.0 [GH-2017](https://github.com/hashicorp/consul-template/pull/2017)
6+
* Bump golang.org/x/crypto to v0.32.0 from v0.22.0 [GH-2017](https://github.com/hashicorp/consul-template/pull/2017)
7+
* Bump golang.org/x/sys to v0.29.0 from v0.20.0 [GH-2017](https://github.com/hashicorp/consul-template/pull/2017)
8+
* Bump golang.org/x/text to v0.21.0 from v0.14.0 [GH-2017](https://github.com/hashicorp/consul-template/pull/2017)
9+
* Add support for the Vault KV subkeys API path [GH-2016](https://github.com/hashicorp/consul-template/pull/2016)
10+
11+
REPO MAINTENANCE:
12+
* Update code owner file [GH-2006](https://github.com/hashicorp/consul-template/pull/2006)
13+
14+
BUG FIXES:
15+
* Add quiescence run flag to avoid render loops among multiple templates [GH-2010](https://github.com/hashicorp/consul-template/pull/2010)
16+
117
# 0.39.1 (July 16, 2024)
218

319
IMPROVEMENTS:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ test:
5454
# test-race runs the test suite.
5555
test-race:
5656
@echo "==> Testing ${NAME} (race)"
57-
@go test -timeout=60s -race -tags="${GOTAGS}" ./... ${TESTARGS}
57+
@go test -v -timeout=120s -race -tags="${GOTAGS}" ./... ${TESTARGS}
5858
.PHONY: test-race
5959

6060
# _cleanup removes any previous binaries

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package version
66
import "fmt"
77

88
const (
9-
Version = "0.39.1"
9+
Version = "0.40.0"
1010
VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash)
1111
)
1212

0 commit comments

Comments
 (0)