feat(plugins): Update MinIO Storage Plugin (#5145)

pull/5146/head
Hugo 2 years ago committed by GitHub
parent 9119effa9e
commit d2cf26869c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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.

@ -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
)

@ -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=

Loading…
Cancel
Save