Skip to content

Commit

Permalink
Update api, sdk to v2.1.0 (#15)
Browse files Browse the repository at this point in the history
* Add examples to tidy-all target

Signed-off-by: Alexander Scheel <[email protected]>

* Update to latest openbao/api, openbao/sdk

Signed-off-by: Alexander Scheel <[email protected]>

---------

Signed-off-by: Alexander Scheel <[email protected]>
  • Loading branch information
cipherboy authored Nov 29, 2024
1 parent 63cabe3 commit 8c7bb54
Show file tree
Hide file tree
Showing 6 changed files with 211 additions and 111 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ tools:
.PHONY: tidy-all
tidy-all:
cd entropy && go mod tidy
cd examples/plugin-cli && go mod tidy
cd examples/plugin-cli/plugins/mains/transit && go mod tidy
cd plugin && go mod tidy
cd wrappers/aead && go mod tidy
cd wrappers/alicloudkms && go mod tidy
Expand Down
4 changes: 2 additions & 2 deletions examples/plugin-cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ replace github.com/openbao/go-kms-wrapping/plugin/v2 => ../../plugin

require (
github.com/hashicorp/go-hclog v1.5.0
github.com/openbao/go-kms-wrapping/v2 v2.0.0-20240219184625-e8f4fba40bca
github.com/openbao/go-kms-wrapping/v2 v2.2.0
github.com/openbao/go-secure-stdlib/configutil/v2 v2.1.0-development20240408
github.com/openbao/go-secure-stdlib/pluginutil/v2 v2.1.0-development20240408
)
Expand Down Expand Up @@ -42,7 +42,7 @@ require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/openbao/go-kms-wrapping/plugin/v2 v2.0.0-20240219184625-e8f4fba40bca // indirect
github.com/openbao/go-kms-wrapping/plugin/v2 v2.1.0 // indirect
github.com/openbao/go-secure-stdlib/base62 v1.1.0-development20240408 // indirect
github.com/openbao/go-secure-stdlib/listenerutil v1.1.0-development20240408 // indirect
github.com/openbao/go-secure-stdlib/parseutil v1.1.0-development20240408 // indirect
Expand Down
42 changes: 21 additions & 21 deletions examples/plugin-cli/plugins/mains/transit/go.mod
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
module github.com/openbao/go-kms-wrapping/examples/cli/plugins/mains/transit

go 1.20
go 1.22.1

toolchain go1.23.2

replace github.com/openbao/go-kms-wrapping/plugin/v2 => ../../../../../plugin

replace github.com/openbao/go-kms-wrapping/wrappers/transit/v2 => ../../../../../wrappers/transit

require (
github.com/openbao/go-kms-wrapping/plugin/v2 v2.0.5
github.com/openbao/go-kms-wrapping/wrappers/transit/v2 v2.0.8
github.com/openbao/go-kms-wrapping/plugin/v2 v2.2.0
github.com/openbao/go-kms-wrapping/wrappers/transit/v2 v2.1.0
)

require (
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/openbao/go-kms-wrapping/v2 v2.0.14 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/openbao/openbao/api v0.0.0-20231222185543-009633ab13d1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/openbao/go-kms-wrapping/v2 v2.2.0 // indirect
github.com/openbao/openbao/api/v2 v2.1.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/crypto v0.29.0 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 8c7bb54

Please sign in to comment.