Skip to content

Commit bb3b835

Browse files
update go packages
1 parent 8949a82 commit bb3b835

File tree

2 files changed

+195
-38
lines changed

2 files changed

+195
-38
lines changed

go.mod

+53-38
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,72 @@
11
module github.com/StatCan/jupyter-apis
22

3-
go 1.20
3+
go 1.23.0
4+
5+
toolchain go1.23.5
46

57
require (
68
github.com/StatCan/kubeflow-apis v0.0.0-20230609114333-af080f42f387
7-
github.com/gorilla/handlers v1.5.1
8-
github.com/gorilla/mux v1.8.0
9-
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
9+
github.com/gorilla/handlers v1.5.2
10+
github.com/gorilla/mux v1.8.1
11+
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c
1012
gopkg.in/inf.v0 v0.9.1
1113
gopkg.in/yaml.v2 v2.4.0
12-
k8s.io/api v0.23.3
13-
k8s.io/apimachinery v0.23.3
14-
k8s.io/client-go v0.23.3
14+
k8s.io/api v0.32.1
15+
k8s.io/apimachinery v0.32.1
16+
k8s.io/client-go v0.32.1
1517
)
1618

1719
require (
1820
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
19-
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
20-
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
21-
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
22-
github.com/Azure/go-autorest/logger v0.2.1 // indirect
23-
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
24-
github.com/davecgh/go-spew v1.1.1 // indirect
25-
github.com/felixge/httpsnoop v1.0.1 // indirect
26-
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
21+
github.com/Azure/go-autorest/autorest v0.11.30 // indirect
22+
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
23+
github.com/Azure/go-autorest/autorest/date v0.3.1 // indirect
24+
github.com/Azure/go-autorest/logger v0.2.2 // indirect
25+
github.com/Azure/go-autorest/tracing v0.6.1 // indirect
26+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
27+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
28+
github.com/felixge/httpsnoop v1.0.4 // indirect
29+
github.com/form3tech-oss/jwt-go v3.2.5+incompatible // indirect
2730
github.com/fsnotify/fsnotify v1.5.1 // indirect
28-
github.com/go-logr/logr v1.2.0 // indirect
31+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
32+
github.com/go-logr/logr v1.4.2 // indirect
33+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
34+
github.com/go-openapi/jsonreference v0.21.0 // indirect
35+
github.com/go-openapi/swag v0.23.0 // indirect
2936
github.com/gogo/protobuf v1.3.2 // indirect
30-
github.com/golang/protobuf v1.5.2 // indirect
31-
github.com/google/go-cmp v0.5.8 // indirect
32-
github.com/google/gofuzz v1.1.0 // indirect
37+
github.com/golang/protobuf v1.5.4 // indirect
38+
github.com/google/gnostic-models v0.6.9 // indirect
39+
github.com/google/go-cmp v0.6.0 // indirect
40+
github.com/google/gofuzz v1.2.0 // indirect
41+
github.com/google/uuid v1.6.0 // indirect
3342
github.com/googleapis/gnostic v0.5.5 // indirect
34-
github.com/imdario/mergo v0.3.12 // indirect
43+
github.com/imdario/mergo v0.3.16 // indirect
44+
github.com/josharian/intern v1.0.0 // indirect
3545
github.com/json-iterator/go v1.1.12 // indirect
46+
github.com/mailru/easyjson v0.9.0 // indirect
3647
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3748
github.com/modern-go/reflect2 v1.0.2 // indirect
49+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3850
github.com/onsi/ginkgo v1.16.5 // indirect
39-
github.com/onsi/gomega v1.17.0 // indirect
40-
github.com/spf13/pflag v1.0.5 // indirect
41-
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
42-
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
43-
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
44-
golang.org/x/sys v0.1.0 // indirect
45-
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
46-
golang.org/x/text v0.3.7 // indirect
47-
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
48-
google.golang.org/appengine v1.6.7 // indirect
49-
google.golang.org/protobuf v1.27.1 // indirect
50-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
51-
k8s.io/klog/v2 v2.30.0 // indirect
52-
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
53-
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
54-
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
55-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
56-
sigs.k8s.io/yaml v1.3.0 // indirect
51+
github.com/onsi/gomega v1.35.1 // indirect
52+
github.com/pkg/errors v0.9.1 // indirect
53+
github.com/spf13/pflag v1.0.6 // indirect
54+
github.com/x448/float16 v0.8.4 // indirect
55+
golang.org/x/crypto v0.32.0 // indirect
56+
golang.org/x/net v0.34.0 // indirect
57+
golang.org/x/oauth2 v0.25.0 // indirect
58+
golang.org/x/sys v0.29.0 // indirect
59+
golang.org/x/term v0.28.0 // indirect
60+
golang.org/x/text v0.21.0 // indirect
61+
golang.org/x/time v0.9.0 // indirect
62+
google.golang.org/appengine v1.6.8 // indirect
63+
google.golang.org/protobuf v1.36.4 // indirect
64+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
65+
gopkg.in/yaml.v3 v3.0.1 // indirect
66+
k8s.io/klog/v2 v2.130.1 // indirect
67+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
68+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
69+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
70+
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
71+
sigs.k8s.io/yaml v1.4.0 // indirect
5772
)

0 commit comments

Comments
 (0)