Skip to content

Commit c1329d9

Browse files
authored
Merge pull request #288 from pete-woods/cve-jwt
chore: run `go mod tidy` specifying Go 1.21 to resolve CVE
2 parents bb6e415 + 5e025df commit c1329d9

File tree

2 files changed

+35
-13
lines changed

2 files changed

+35
-13
lines changed

go.mod

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,57 @@
11
module github.com/go-oauth2/oauth2/v4
22

3-
go 1.13
3+
go 1.21
4+
5+
require (
6+
github.com/gavv/httpexpect v2.0.0+incompatible
7+
github.com/go-session/session/v3 v3.2.1
8+
github.com/golang-jwt/jwt/v5 v5.3.0
9+
github.com/google/uuid v1.1.1
10+
github.com/smartystreets/goconvey v1.6.4
11+
github.com/tidwall/buntdb v1.1.2
12+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
13+
)
414

515
require (
616
github.com/ajg/form v1.5.1 // indirect
17+
github.com/andybalholm/brotli v1.0.4 // indirect
18+
github.com/bytedance/gopkg v0.0.0-20221122125632-68358b8ecec6 // indirect
19+
github.com/davecgh/go-spew v1.1.1 // indirect
720
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
821
github.com/fatih/structs v1.1.0 // indirect
9-
github.com/gavv/httpexpect v2.0.0+incompatible
10-
github.com/go-session/session/v3 v3.2.1
11-
github.com/golang-jwt/jwt v3.2.2+incompatible
22+
github.com/golang/protobuf v1.4.2 // indirect
1223
github.com/google/go-querystring v1.0.0 // indirect
13-
github.com/google/uuid v1.1.1
24+
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
1425
github.com/gorilla/websocket v1.4.2 // indirect
1526
github.com/imkira/go-interpol v1.1.0 // indirect
16-
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
27+
github.com/jtolds/gls v4.20.0+incompatible // indirect
28+
github.com/klauspost/compress v1.15.0 // indirect
1729
github.com/mattn/go-colorable v0.1.7 // indirect
1830
github.com/moul/http2curl v1.0.0 // indirect
1931
github.com/onsi/ginkgo v1.13.0 // indirect
32+
github.com/onsi/gomega v1.10.1 // indirect
33+
github.com/pmezard/go-difflib v1.0.0 // indirect
2034
github.com/sergi/go-diff v1.1.0 // indirect
21-
github.com/smartystreets/goconvey v1.6.4
22-
github.com/tidwall/buntdb v1.1.2
35+
github.com/smartystreets/assertions v1.1.0 // indirect
36+
github.com/stretchr/testify v1.7.0 // indirect
37+
github.com/tidwall/btree v0.0.0-20191029221954-400434d76274 // indirect
2338
github.com/tidwall/gjson v1.12.1 // indirect
39+
github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb // indirect
40+
github.com/tidwall/match v1.1.1 // indirect
41+
github.com/tidwall/pretty v1.2.0 // indirect
42+
github.com/tidwall/rtree v0.0.0-20180113144539-6cd427091e0e // indirect
43+
github.com/tidwall/tinyqueue v0.0.0-20180302190814-1e39f5511563 // indirect
44+
github.com/valyala/bytebufferpool v1.0.0 // indirect
2445
github.com/valyala/fasthttp v1.34.0 // indirect
46+
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
47+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
2548
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
2649
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
2750
github.com/yudai/gojsondiff v1.0.0 // indirect
2851
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
2952
github.com/yudai/pp v2.0.1+incompatible // indirect
30-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
53+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
3154
google.golang.org/appengine v1.6.6 // indirect
55+
google.golang.org/protobuf v1.23.0 // indirect
3256
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
3357
)

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ github.com/gavv/httpexpect v2.0.0+incompatible h1:1X9kcRshkSKEjNJJxX9Y9mQ5BRfbxU
1919
github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc=
2020
github.com/go-session/session/v3 v3.2.1 h1:APQf5JFW84+bhbqRjEZO8J+IppSgT1jMQTFI/XVyIFY=
2121
github.com/go-session/session/v3 v3.2.1/go.mod h1:RftEBbyuzqkNCAxIrCLJe+rfBqB/4G11qxq9KYKrx4M=
22-
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
23-
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
22+
github.com/golang-jwt/jwt/v5 v5.3.0 h1:pv4AsKCKKZuqlgs5sUmn4x8UlGa0kEVt/puTpKx9vvo=
23+
github.com/golang-jwt/jwt/v5 v5.3.0/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE=
2424
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
2525
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
2626
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
@@ -48,8 +48,6 @@ github.com/imkira/go-interpol v1.1.0 h1:KIiKr0VSG2CUW1hl1jpiyuzuJeKUUpC8iM1AIE7N
4848
github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA=
4949
github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=
5050
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
51-
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM=
52-
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k=
5351
github.com/klauspost/compress v1.15.0 h1:xqfchp4whNFxn5A4XFyyYtitiWI8Hy5EW59jEwcyL6U=
5452
github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
5553
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=

0 commit comments

Comments
 (0)