Skip to content

Commit

Permalink
fix(db): update host_plugin_set to set project_id value (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddebko authored Aug 30, 2022
1 parent d37bd03 commit d9eba38
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release/ci.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ project "boundary" {

release_branches = [
"main",
"release/0.10.2",
"release/0.10.x",
]
}
}
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,23 @@

Canonical reference for changes, improvements, and bugfixes for Boundary.

## 0.10.3 (2022/08/30)

### 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)).

## 0.10.2 (2022/08/23)

### Security

* Fix security vulnerability CVE-2022-36130, Boundary up to 0.10.1 did not properly perform
authorization checks to ensure the resources were associated with the correct scopes,
allowing potential privilege escalation for authorized users of another scope.
[[HCSEC-2022-17](https://discuss.hashicorp.com/t/hcsec-2022017-boundary-allowed-access-to-host-sets-and-credential-sources-for-authorized-users-of-another-scope/43493)]

## 0.10.1 (2022/08/11)

### Bug Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ begin;
set (project_id) =
(select project_id
from host_set
where host_set.public_id = host_plugin_set.catalog_id
where host_set.public_id = host_plugin_set.public_id
)
;

Expand Down
2 changes: 1 addition & 1 deletion version/version_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var (
// Whether cgo is enabled or not; set at build time
CgoEnabled bool

Version = "0.10.2"
Version = "0.10.3"

// VersionPrerelease is also set at compile time, similarly to Version.
VersionPrerelease = ""
Expand Down

0 comments on commit d9eba38

Please sign in to comment.