Skip to content

Commit a847fcb

Browse files
authored
Add the ability to ignore unhandled critical certificate exceptions (#313)
* Wire up support for ignoring unhandled critical extensions * update deps * update dep * Peg to real tag * attempts at testing * Support the cert pool * setup the CA roots in the roundtripper if present * remove dead code
1 parent 52af34e commit a847fcb

File tree

6 files changed

+279
-213
lines changed

6 files changed

+279
-213
lines changed

go.mod

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
module github.com/hashicorp/vault-plugin-auth-jwt
22

3-
go 1.21
3+
go 1.22.5
44

55
require (
66
github.com/go-jose/go-jose/v3 v3.0.3
77
github.com/go-test/deep v1.1.0
8-
github.com/hashicorp/cap v0.6.0
8+
github.com/hashicorp/cap v0.7.0
99
github.com/hashicorp/errwrap v1.1.0
1010
github.com/hashicorp/go-cleanhttp v0.5.2
11-
github.com/hashicorp/go-hclog v1.6.2
11+
github.com/hashicorp/go-hclog v1.6.3
1212
github.com/hashicorp/go-multierror v1.1.1
1313
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2
14+
github.com/hashicorp/go-secure-stdlib/httputil v0.1.0
1415
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
1516
github.com/hashicorp/go-sockaddr v1.0.6
1617
github.com/hashicorp/vault/api v1.12.0
@@ -20,28 +21,27 @@ require (
2021
github.com/patrickmn/go-cache v2.1.0+incompatible
2122
github.com/ryanuber/go-glob v1.0.0
2223
github.com/stretchr/testify v1.9.0
23-
golang.org/x/oauth2 v0.18.0
24-
golang.org/x/sync v0.6.0
24+
golang.org/x/oauth2 v0.21.0
25+
golang.org/x/sync v0.7.0
2526
google.golang.org/api v0.163.0
2627
)
2728

2829
require (
29-
cloud.google.com/go/compute v1.23.3 // indirect
30-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
30+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
3131
github.com/Microsoft/go-winio v0.6.1 // indirect
3232
github.com/armon/go-metrics v0.4.1 // indirect
3333
github.com/armon/go-radix v1.0.0 // indirect
3434
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
35-
github.com/coreos/go-oidc/v3 v3.10.0 // indirect
35+
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
3636
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3737
github.com/docker/distribution v2.8.2+incompatible // indirect
3838
github.com/docker/docker v24.0.9+incompatible // indirect
3939
github.com/docker/go-connections v0.4.0 // indirect
4040
github.com/docker/go-units v0.5.0 // indirect
4141
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
42-
github.com/fatih/color v1.16.0 // indirect
42+
github.com/fatih/color v1.17.0 // indirect
4343
github.com/felixge/httpsnoop v1.0.4 // indirect
44-
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
44+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
4545
github.com/go-logr/logr v1.4.1 // indirect
4646
github.com/go-logr/stdr v1.2.2 // indirect
4747
github.com/gogo/protobuf v1.3.2 // indirect
@@ -85,14 +85,13 @@ require (
8585
go.opentelemetry.io/otel/metric v1.24.0 // indirect
8686
go.opentelemetry.io/otel/trace v1.24.0 // indirect
8787
go.uber.org/atomic v1.9.0 // indirect
88-
golang.org/x/crypto v0.22.0 // indirect
89-
golang.org/x/mod v0.11.0 // indirect
90-
golang.org/x/net v0.24.0 // indirect
91-
golang.org/x/sys v0.19.0 // indirect
92-
golang.org/x/text v0.14.0 // indirect
88+
golang.org/x/crypto v0.25.0 // indirect
89+
golang.org/x/mod v0.17.0 // indirect
90+
golang.org/x/net v0.27.0 // indirect
91+
golang.org/x/sys v0.22.0 // indirect
92+
golang.org/x/text v0.16.0 // indirect
9393
golang.org/x/time v0.5.0 // indirect
94-
golang.org/x/tools v0.10.0 // indirect
95-
google.golang.org/appengine v1.6.8 // indirect
94+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
9695
google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 // indirect
9796
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
9897
google.golang.org/grpc v1.61.1 // indirect

0 commit comments

Comments
 (0)