-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to go-1.22, also fix a JWT CVE (#44)
Showing
3 changed files
with
85 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
module github.com/metal-stack/security | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/coreos/go-oidc/v3 v3.8.0 | ||
github.com/go-jose/go-jose/v3 v3.0.1 | ||
github.com/go-openapi/runtime v0.26.0 | ||
github.com/coreos/go-oidc/v3 v3.9.0 | ||
github.com/go-jose/go-jose/v3 v3.0.3 | ||
github.com/go-openapi/runtime v0.28.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.4.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/gorilla/mux v1.8.1 | ||
github.com/lestrrat-go/jwx/v2 v2.0.19 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/crypto v0.17.0 | ||
golang.org/x/net v0.19.0 | ||
golang.org/x/oauth2 v0.15.0 | ||
github.com/lestrrat-go/jwx/v2 v2.0.21 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/crypto v0.21.0 | ||
golang.org/x/net v0.22.0 | ||
golang.org/x/oauth2 v0.18.0 | ||
) | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/go-openapi/errors v0.20.4 // indirect | ||
github.com/go-openapi/strfmt v0.21.7 // indirect | ||
github.com/go-openapi/swag v0.22.4 // indirect | ||
github.com/go-openapi/errors v0.22.0 // indirect | ||
github.com/go-openapi/strfmt v0.23.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.2 // indirect | ||
github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
github.com/lestrrat-go/httprc v1.0.4 // indirect | ||
github.com/lestrrat-go/httprc v1.0.5 // indirect | ||
github.com/lestrrat-go/iter v1.0.2 // indirect | ||
github.com/lestrrat-go/option v1.0.1 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
go.mongodb.org/mongo-driver v1.13.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
go.mongodb.org/mongo-driver v1.14.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
google.golang.org/appengine v1.6.8 // 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 | ||
) |
Oops, something went wrong.