Skip to content
This repository was archived by the owner on Sep 12, 2023. It is now read-only.

Commit 2b40c8f

Browse files
authored
Chore: upgrade to do mod 1.17 (#184)
1 parent 4322683 commit 2b40c8f

File tree

1 file changed

+57
-4
lines changed

1 file changed

+57
-4
lines changed

go.mod

Lines changed: 57 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
module github.com/kubeflow/common
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/go-logr/logr v0.3.0
77
github.com/go-openapi/spec v0.20.3
88
github.com/prometheus/client_golang v1.10.0
99
github.com/sirupsen/logrus v1.6.0
1010
github.com/stretchr/testify v1.6.1
11-
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
12-
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
13-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
1411
k8s.io/api v0.19.9
1512
k8s.io/apimachinery v0.19.9
1613
k8s.io/client-go v0.19.9
@@ -20,6 +17,62 @@ require (
2017
volcano.sh/apis v1.2.0-k8s1.19.6
2118
)
2219

20+
require (
21+
cloud.google.com/go v0.51.0 // indirect
22+
github.com/PuerkitoBio/purell v1.1.1 // indirect
23+
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
24+
github.com/beorn7/perks v1.0.1 // indirect
25+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
26+
github.com/davecgh/go-spew v1.1.1 // indirect
27+
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
28+
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
29+
github.com/fsnotify/fsnotify v1.4.9 // indirect
30+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
31+
github.com/go-openapi/jsonreference v0.19.5 // indirect
32+
github.com/go-openapi/swag v0.19.14 // indirect
33+
github.com/gogo/protobuf v1.3.1 // indirect
34+
github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7 // indirect
35+
github.com/golang/protobuf v1.4.3 // indirect
36+
github.com/google/go-cmp v0.5.4 // indirect
37+
github.com/google/gofuzz v1.1.0 // indirect
38+
github.com/google/uuid v1.1.1 // indirect
39+
github.com/googleapis/gnostic v0.5.1 // indirect
40+
github.com/hashicorp/golang-lru v0.5.4 // indirect
41+
github.com/imdario/mergo v0.3.10 // indirect
42+
github.com/josharian/intern v1.0.0 // indirect
43+
github.com/json-iterator/go v1.1.10 // indirect
44+
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
45+
github.com/mailru/easyjson v0.7.6 // indirect
46+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
47+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
48+
github.com/modern-go/reflect2 v1.0.1 // indirect
49+
github.com/pkg/errors v0.9.1 // indirect
50+
github.com/pmezard/go-difflib v1.0.0 // indirect
51+
github.com/prometheus/client_model v0.2.0 // indirect
52+
github.com/prometheus/common v0.18.0 // indirect
53+
github.com/prometheus/procfs v0.6.0 // indirect
54+
github.com/spf13/pflag v1.0.5 // indirect
55+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
56+
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
57+
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
58+
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
59+
golang.org/x/text v0.3.5 // indirect
60+
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
61+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
62+
gomodules.xyz/jsonpatch/v2 v2.1.0 // indirect
63+
google.golang.org/appengine v1.6.6 // indirect
64+
google.golang.org/protobuf v1.24.0 // indirect
65+
gopkg.in/inf.v0 v0.9.1 // indirect
66+
gopkg.in/yaml.v2 v2.4.0 // indirect
67+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
68+
k8s.io/apiextensions-apiserver v0.19.2 // indirect
69+
k8s.io/component-base v0.19.6 // indirect
70+
k8s.io/klog/v2 v2.2.0 // indirect
71+
k8s.io/utils v0.0.0-20200912215256-4140de9c8800 // indirect
72+
sigs.k8s.io/structured-merge-diff/v4 v4.0.1 // indirect
73+
sigs.k8s.io/yaml v1.2.0 // indirect
74+
)
75+
2376
replace (
2477
k8s.io/api => k8s.io/api v0.19.9
2578
k8s.io/apimachinery => k8s.io/apimachinery v0.19.9

0 commit comments

Comments
 (0)