Skip to content

Commit

Permalink
Automated dependency upgrades (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
1 parent daeaf8d commit f2d1f52
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 41 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ service account as alias metadata for the Vault entity [GH-226](https://github.c

* Build with go 1.21.3
* Test with k8s versions 1.24-1.28
* Updated dependencies [GH-209](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/209):
* `github.com/hashicorp/cap` v0.3.4 -> v0.4.0
* Updated dependencies [GH-209](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/209) [GH-225](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/225):
* `github.com/hashicorp/cap` v0.3.4 -> v0.4.1
* `github.com/hashicorp/go-sockaddr` v1.0.2 -> v1.0.5
* `github.com/hashicorp/vault/api` v1.9.2 -> v1.10.0
* `github.com/hashicorp/vault/sdk` v0.9.2 -> v0.10.2
* `k8s.io/api` v0.28.1 -> v0.28.3
* `k8s.io/apimachinery` v0.28.1 -> v0.28.3
* `k8s.io/api` v0.28.1 -> v0.29.0
* `k8s.io/apimachinery` v0.28.1 -> v0.29.0
* `golang.org/x/crypto` v0.11.0 -> v0.14.0
* `golang.org/x/net` v0.13.0 -> v0.17.0
* `golang.org/x/sys` v0.10.0 -> v0.13.0
* `golang.org/x/text` v0.11.0 -> v0.13.0
* `github.com/docker/docker` v24.0.5+incompatible -> v24.0.7+incompatible
* `github.com/go-jose/go-jose/v3` v3.0.0 -> v3.0.1
* `github.com/hashicorp/go-hclog` v1.5.0 -> v1.6.2

### Improvements

Expand Down
26 changes: 14 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
module github.com/hashicorp/vault-plugin-auth-kubernetes

go 1.20
go 1.21

toolchain go1.21.3

require (
github.com/go-test/deep v1.1.0
github.com/hashicorp/cap v0.4.0
github.com/hashicorp/cap v0.4.1
github.com/hashicorp/go-cleanhttp v0.5.2
github.com/hashicorp/go-hclog v1.5.0
github.com/hashicorp/go-hclog v1.6.2
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
github.com/hashicorp/go-sockaddr v1.0.6
github.com/hashicorp/go-uuid v1.0.3
github.com/hashicorp/vault/api v1.10.0
github.com/hashicorp/vault/sdk v0.10.2
github.com/mitchellh/mapstructure v1.5.0
gopkg.in/square/go-jose.v2 v2.6.0
k8s.io/api v0.28.4
k8s.io/apimachinery v0.28.4
k8s.io/api v0.29.0
k8s.io/apimachinery v0.29.0
)

require (
Expand All @@ -32,7 +34,7 @@ require (
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/fatih/color v1.14.1 // indirect
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
Expand Down Expand Up @@ -68,26 +70,26 @@ require (
github.com/pkg/errors v0.9.1 // 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.3 // indirect
github.com/stretchr/testify v1.8.4 // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.8.0 // indirect
golang.org/x/tools v0.12.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5 // indirect
google.golang.org/grpc v1.57.1 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/klog/v2 v2.100.1 // indirect
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
k8s.io/klog/v2 v2.110.1 // indirect
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)
Loading

0 comments on commit f2d1f52

Please sign in to comment.