Skip to content

Commit bbbd6b1

Browse files
authored
backport 0.12.1 release (hashicorp#3079)
* chore: update version * fix(tests): break out of infinite loop for bats tests * chore: update changelog * fix: make-gen-delta check
1 parent b6d58d0 commit bbbd6b1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Boundary CHANGELOG
22

33
Canonical reference for changes, improvements, and bugfixes for Boundary.
4-
54
## Next
65

6+
## 0.12.1 (2023/03/13)
7+
78
### Bug Fixes
89

910
* cli: Fix fallback parsing of un-typed credentials for `boundary connect`.

internal/tests/cli/test.sh

+6
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@ function cleanup {
3232

3333
trap cleanup EXIT
3434

35+
max=120
36+
c=0
3537
until boundary scopes list; do
3638
echo 'waiting for boundary to be up'
39+
((c+=1))
40+
if [[ $c -ge $max ]]; then
41+
die "timeout waiting for boundary controller to get healthy"
42+
fi
3743
sleep 1
3844
done
3945

version/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.12.1

version/version_base.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var (
1313

1414
// Version is the base version
1515
// Default values - set when building locally (at build time)
16-
Version = "0.12.0"
16+
Version = "0.12.1"
1717

1818
// VersionPrerelease is also set at compile time, similarly to Version.
1919
VersionPrerelease string

0 commit comments

Comments
 (0)