chore: prep for next release

pull/2428/head
Louis Ruch 4 years ago
parent 0d29942db9
commit cb8a541b02

@ -4,6 +4,8 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
## Next
## 0.10.4 (Unreleased)
### New and Improved
* Controller-led worker authorization: This is a second authorization option for
@ -59,8 +61,8 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
### Bug Fixes
* db: Fix an issue with migrations failing due to not updating the project_id value for the host plugin set
([Issue](https://github.com/hashicorp/boundary/issues/2349#issuecomment-1229953874)),
([PR](https://github.com/hashicorp/boundary/pull/2407)).
([Issue](https://github.com/hashicorp/boundary/issues/2349#issuecomment-1229953874),
[PR](https://github.com/hashicorp/boundary/pull/2407)).
## 0.10.2 (2022/08/23)
@ -77,8 +79,8 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
* db: Fix an issue with migrations affecting clusters that contain
credential libraries or static credentials.
([Issue](https://github.com/hashicorp/boundary/issues/2349)),
([PR](https://github.com/hashicorp/boundary/pull/2351)).
([Issue](https://github.com/hashicorp/boundary/issues/2349),
[PR](https://github.com/hashicorp/boundary/pull/2351)).
* managed groups: Fix an issue where the `filter` field is not sent by
admin UI ([PR](https://github.com/hashicorp/boundary-ui/pull/1238)).
* host sets: Fix an issue causing host sets to not display in UI when using the aws plugin

@ -20,8 +20,8 @@ require (
github.com/google/go-cmp v0.5.8
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.2
github.com/hashicorp/boundary/api v0.0.28
github.com/hashicorp/boundary/sdk v0.0.20
github.com/hashicorp/boundary/api v0.0.29
github.com/hashicorp/boundary/sdk v0.0.21
github.com/hashicorp/cap v0.1.1
github.com/hashicorp/dawdle v0.4.0
github.com/hashicorp/dbassert v0.0.0-20210708202608-ecf920cf1ed8
@ -93,6 +93,7 @@ require (
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/hashicorp/go-kms-wrapping/extras/kms/v2 v2.0.0-20220711120347-32232bae6803
github.com/hashicorp/nodeenrollment v0.1.16
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e
)
require (
@ -183,7 +184,6 @@ require (
github.com/xo/dburl v0.11.0 // indirect
go.uber.org/goleak v1.1.10 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect

@ -8,7 +8,7 @@ var (
// Whether cgo is enabled or not; set at build time
CgoEnabled bool
Version = "0.10.3"
Version = "0.10.4"
// VersionPrerelease is also set at compile time, similarly to Version.
VersionPrerelease = ""

Loading…
Cancel
Save