-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore (oidc, jwt, ldap): update deps (#133)
* chore (oidc/jwt): update deps updated oauth2 dep required a few minor compatibility changes in the oidc pkg. * chore (ldap): updated deps required one minor test change * chore (fuzz): update fuzz deps
- Loading branch information
Showing
13 changed files
with
230 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.21.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,38 @@ | ||
module github.com/hashicorp/cap | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/coreos/go-oidc/v3 v3.5.0 | ||
github.com/coreos/go-oidc/v3 v3.10.0 | ||
github.com/go-jose/go-jose/v3 v3.0.3 | ||
github.com/hashicorp/go-cleanhttp v0.5.2 | ||
github.com/hashicorp/go-hclog v1.4.0 | ||
github.com/hashicorp/go-hclog v1.6.2 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/hashicorp/go-uuid v1.0.3 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/yhat/scrape v0.0.0-20161128144610-24b7890b0945 | ||
golang.org/x/net v0.17.0 | ||
golang.org/x/oauth2 v0.5.0 | ||
golang.org/x/net v0.22.0 | ||
golang.org/x/oauth2 v0.18.0 | ||
golang.org/x/text v0.14.0 | ||
mvdan.cc/gofumpt v0.5.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.14.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.1 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.