Skip to content

Commit 2b5994d

Browse files
committed
chore: update to Go 1.19, bump dependencies to their latest versions
1 parent 920302d commit 2b5994d

File tree

2 files changed

+637
-188
lines changed

2 files changed

+637
-188
lines changed

01-Login/go.mod

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,38 @@
11
module 01-Login
22

3-
go 1.16
3+
go 1.19
44

55
require (
6-
github.com/coreos/go-oidc/v3 v3.2.0
6+
github.com/coreos/go-oidc/v3 v3.4.0
77
github.com/gin-contrib/sessions v0.0.5
88
github.com/gin-gonic/gin v1.8.1
99
github.com/joho/godotenv v1.4.0
10-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
10+
golang.org/x/oauth2 v0.2.0
11+
)
12+
13+
require (
14+
github.com/gin-contrib/sse v0.1.0 // indirect
15+
github.com/go-playground/locales v0.14.0 // indirect
16+
github.com/go-playground/universal-translator v0.18.0 // indirect
17+
github.com/go-playground/validator/v10 v10.11.1 // indirect
18+
github.com/goccy/go-json v0.10.0 // indirect
19+
github.com/golang/protobuf v1.5.2 // indirect
20+
github.com/gorilla/context v1.1.1 // indirect
21+
github.com/gorilla/securecookie v1.1.1 // indirect
22+
github.com/gorilla/sessions v1.2.1 // indirect
23+
github.com/json-iterator/go v1.1.12 // indirect
24+
github.com/leodido/go-urn v1.2.1 // indirect
25+
github.com/mattn/go-isatty v0.0.16 // indirect
26+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
27+
github.com/modern-go/reflect2 v1.0.2 // indirect
28+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
29+
github.com/ugorji/go/codec v1.2.7 // indirect
30+
golang.org/x/crypto v0.3.0 // indirect
31+
golang.org/x/net v0.2.0 // indirect
32+
golang.org/x/sys v0.3.0 // indirect
33+
golang.org/x/text v0.5.0 // indirect
34+
google.golang.org/appengine v1.6.7 // indirect
35+
google.golang.org/protobuf v1.28.1 // indirect
36+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
37+
gopkg.in/yaml.v2 v2.4.0 // indirect
1138
)

0 commit comments

Comments
 (0)