Skip to content

Commit 37f5639

Browse files
committed
Go 1.22 update
1 parent 1a850ee commit 37f5639

File tree

6 files changed

+106
-528
lines changed

6 files changed

+106
-528
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ bin
3232
vendor
3333
*debug*
3434

35+
# Go workspace files
36+
go.work
37+
go.work.sum
38+
3539
# Unneeded files and folders
3640
.DS_Store
3741
config.toml

go.mod

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,45 @@
11
module github.com/opengapps/package-api
22

3-
go 1.18
3+
go 1.22
44

55
require (
6-
github.com/google/go-github/v47 v47.0.0
7-
github.com/gorilla/feeds v1.1.1
8-
github.com/gorilla/handlers v1.5.1
9-
github.com/gorilla/mux v1.8.0
6+
github.com/google/go-github/v47 v47.1.0
7+
github.com/gorilla/feeds v1.2.0
8+
github.com/gorilla/handlers v1.5.2
9+
github.com/gorilla/mux v1.8.1
1010
github.com/opengapps/package-api/pkg/gapps v1.0.0
11-
github.com/sirupsen/logrus v1.9.0
11+
github.com/sirupsen/logrus v1.9.3
1212
github.com/spf13/pflag v1.0.5
13-
github.com/spf13/viper v1.13.0
14-
github.com/stretchr/testify v1.8.0
15-
go.etcd.io/bbolt v1.3.6
16-
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
17-
golang.org/x/sync v0.0.0-20220907140024-f12130a52804
13+
github.com/spf13/viper v1.19.0
14+
github.com/stretchr/testify v1.9.0
15+
go.etcd.io/bbolt v1.3.10
16+
golang.org/x/oauth2 v0.21.0
17+
golang.org/x/sync v0.7.0
1818
)
1919

2020
require (
21-
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/felixge/httpsnoop v1.0.3 // indirect
23-
github.com/fsnotify/fsnotify v1.5.4 // indirect
24-
github.com/golang/protobuf v1.5.2 // indirect
21+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22+
github.com/felixge/httpsnoop v1.0.4 // indirect
23+
github.com/fsnotify/fsnotify v1.7.0 // indirect
2524
github.com/google/go-querystring v1.1.0 // indirect
2625
github.com/hashicorp/hcl v1.0.0 // indirect
27-
github.com/magiconair/properties v1.8.6 // indirect
26+
github.com/magiconair/properties v1.8.7 // indirect
2827
github.com/mitchellh/mapstructure v1.5.0 // indirect
29-
github.com/pelletier/go-toml v1.9.5 // indirect
30-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
31-
github.com/pmezard/go-difflib v1.0.0 // indirect
32-
github.com/spf13/afero v1.9.2 // indirect
33-
github.com/spf13/cast v1.5.0 // indirect
34-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
35-
github.com/subosito/gotenv v1.4.1 // indirect
36-
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
37-
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
38-
golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2 // indirect
39-
golang.org/x/text v0.3.7 // indirect
40-
google.golang.org/appengine v1.6.7 // indirect
41-
google.golang.org/protobuf v1.28.1 // indirect
28+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
29+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
30+
github.com/sagikazarmark/locafero v0.4.0 // indirect
31+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
32+
github.com/sourcegraph/conc v0.3.0 // indirect
33+
github.com/spf13/afero v1.11.0 // indirect
34+
github.com/spf13/cast v1.6.0 // indirect
35+
github.com/subosito/gotenv v1.6.0 // indirect
36+
go.uber.org/atomic v1.9.0 // indirect
37+
go.uber.org/multierr v1.9.0 // indirect
38+
golang.org/x/crypto v0.21.0 // indirect
39+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
40+
golang.org/x/sys v0.18.0 // indirect
41+
golang.org/x/text v0.14.0 // indirect
4242
gopkg.in/ini.v1 v1.67.0 // indirect
43-
gopkg.in/yaml.v2 v2.4.0 // indirect
4443
gopkg.in/yaml.v3 v3.0.1 // indirect
4544
)
4645

0 commit comments

Comments
 (0)