Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(plugins): Update MinIO Storage Plugin #5145

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
catalog. ([PR](https://github.com/hashicorp/boundary/pull/5137) and
[PR](https://github.com/hashicorp/boundary-plugin-aws/pull/49))

* Improved MinIO storage plugin compatibility with other services by dropping
the checksum headers in `PutObject`.
([PR](https://github.com/hashicorp/boundary-plugin-minio/pull/23))

### Bug Fixes

* Prevented a data-race in Boundary's event logging system.
Expand Down
2 changes: 1 addition & 1 deletion plugins/boundary/mains/minio/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/minio
go 1.23.0

require (
github.com/hashicorp/boundary-plugin-minio v0.1.4
github.com/hashicorp/boundary-plugin-minio v0.1.5
github.com/hashicorp/boundary/sdk v0.0.43-0.20240717182311-a20aae98794a
)

Expand Down
4 changes: 2 additions & 2 deletions plugins/boundary/mains/minio/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaU
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU=
github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/hashicorp/boundary-plugin-minio v0.1.4 h1:f7t/wj6z6oclszg/45DJz7doJRopC+ye3tTwECgXjI4=
github.com/hashicorp/boundary-plugin-minio v0.1.4/go.mod h1:EqjMDErDXA6JWZwQDjr6AsRGCpshBcNObzVBnURUQ9E=
github.com/hashicorp/boundary-plugin-minio v0.1.5 h1:6AWQlmL/M9Kj+JNbPMOv+ODzt5Lr+05WWzDJASvsV/c=
github.com/hashicorp/boundary-plugin-minio v0.1.5/go.mod h1:EqjMDErDXA6JWZwQDjr6AsRGCpshBcNObzVBnURUQ9E=
github.com/hashicorp/boundary/sdk v0.0.43-0.20240717182311-a20aae98794a h1:SwVze6sYE5o+J9qdcgj29auY1k6O8oSo9DC2+2Gb9rw=
github.com/hashicorp/boundary/sdk v0.0.43-0.20240717182311-a20aae98794a/go.mod h1:9iOT7kDM6mYcSkKxNuZlv8rP7U5BG1kXoevjLLL8lNQ=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
Expand Down