Skip to content

Commit 338ed6b

Browse files
authored
Merge pull request #6287 from sbueringer/pr-upgrade-cobra
🌱 deps: Upgrade cobra and viper
2 parents 9640fe8 + d0e793f commit 338ed6b

File tree

6 files changed

+259
-96
lines changed

6 files changed

+259
-96
lines changed

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ require (
2323
github.com/onsi/ginkgo v1.16.5
2424
github.com/onsi/gomega v1.17.0
2525
github.com/pkg/errors v0.9.1
26-
github.com/spf13/cobra v1.2.1
26+
github.com/spf13/cobra v1.4.0
2727
github.com/spf13/pflag v1.0.5
28-
github.com/spf13/viper v1.9.0
28+
github.com/spf13/viper v1.10.1
2929
github.com/valyala/fastjson v1.6.3
3030
go.etcd.io/etcd/api/v3 v3.5.1
3131
go.etcd.io/etcd/client/v3 v3.5.1
3232
golang.org/x/net v0.0.0-20210825183410-e898025ed96a
3333
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
34-
google.golang.org/grpc v1.42.0
34+
google.golang.org/grpc v1.43.0
3535
k8s.io/api v0.23.0
3636
k8s.io/apiextensions-apiserver v0.23.0
3737
k8s.io/apimachinery v0.23.0
@@ -47,7 +47,7 @@ require (
4747
)
4848

4949
require (
50-
cloud.google.com/go v0.93.3 // indirect
50+
cloud.google.com/go v0.99.0 // indirect
5151
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
5252
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
5353
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
@@ -64,7 +64,7 @@ require (
6464
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e // indirect
6565
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
6666
github.com/beorn7/perks v1.0.1 // indirect
67-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
67+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
6868
github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect
6969
github.com/coredns/caddy v1.1.0 // indirect
7070
github.com/coreos/go-semver v0.3.0 // indirect
@@ -98,13 +98,13 @@ require (
9898
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
9999
github.com/magiconair/properties v1.8.5 // indirect
100100
github.com/mailru/easyjson v0.7.6 // indirect
101-
github.com/mattn/go-colorable v0.1.9 // indirect
101+
github.com/mattn/go-colorable v0.1.12 // indirect
102102
github.com/mattn/go-isatty v0.0.14 // indirect
103103
github.com/mattn/go-runewidth v0.0.13 // indirect
104104
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
105105
github.com/mitchellh/copystructure v1.2.0 // indirect
106106
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
107-
github.com/mitchellh/mapstructure v1.4.2 // indirect
107+
github.com/mitchellh/mapstructure v1.4.3 // indirect
108108
github.com/mitchellh/reflectwalk v1.0.2 // indirect
109109
github.com/moby/spdystream v0.2.0 // indirect
110110
github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect
@@ -139,16 +139,16 @@ require (
139139
go.uber.org/zap v1.19.1 // indirect
140140
go4.org v0.0.0-20201209231011-d4a079459e60 // indirect
141141
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
142-
golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect
142+
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
143143
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
144144
golang.org/x/text v0.3.7 // indirect
145145
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
146146
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
147147
google.golang.org/appengine v1.6.7 // indirect
148-
google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect
148+
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
149149
google.golang.org/protobuf v1.27.1 // indirect
150150
gopkg.in/inf.v0 v0.9.1 // indirect
151-
gopkg.in/ini.v1 v1.63.2 // indirect
151+
gopkg.in/ini.v1 v1.66.2 // indirect
152152
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
153153
gopkg.in/yaml.v2 v2.4.0 // indirect
154154
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect

0 commit comments

Comments
 (0)