Skip to content

Commit 3476b3a

Browse files
committed
bump github.com/spf13/cobra to 1.2.1
1 parent 007c0d3 commit 3476b3a

File tree

2 files changed

+445
-8
lines changed

2 files changed

+445
-8
lines changed

go.mod

+25-8
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,25 @@ require (
88
github.com/arduino/go-properties-orderedmap v1.6.0
99
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b
1010
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b
11+
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
1112
github.com/cmaglie/go.rice v1.0.3 // This one must be kept until https://github.com/GeertJohan/go.rice/pull/159 is merged
1213
github.com/cmaglie/pb v1.0.27
1314
github.com/codeclysm/cc v1.2.2 // indirect
1415
github.com/codeclysm/extract/v3 v3.0.2
16+
github.com/coreos/bbolt v1.3.2 // indirect
17+
github.com/coreos/etcd v3.3.10+incompatible // indirect
18+
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
19+
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
20+
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
1521
github.com/fatih/color v1.7.0
1622
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 // indirect
1723
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 // indirect
1824
github.com/gofrs/uuid v3.2.0+incompatible
25+
github.com/gorilla/websocket v1.4.0 // indirect
26+
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
27+
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
1928
github.com/h2non/filetype v1.0.8 // indirect
29+
github.com/jonboulle/clockwork v0.1.0 // indirect
2030
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
2131
github.com/kr/text v0.2.0 // indirect
2232
github.com/leonelquinteros/gotext v1.4.0
@@ -28,28 +38,35 @@ require (
2838
github.com/oleksandr/bonjour v0.0.0-20160508152359-5dcf00d8b228 // indirect
2939
github.com/pkg/errors v0.9.1
3040
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583
41+
github.com/prometheus/client_golang v0.9.3 // indirect
3142
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
3243
github.com/schollz/closestmatch v2.1.0+incompatible
3344
github.com/segmentio/stats/v4 v4.5.3
3445
github.com/sergi/go-diff v1.1.0 // indirect
3546
github.com/sirupsen/logrus v1.4.2
36-
github.com/spf13/cobra v1.0.1-0.20200710201246-675ae5f5a98c
37-
github.com/spf13/jwalterweatherman v1.0.0
38-
github.com/spf13/viper v1.6.2
39-
github.com/stretchr/testify v1.6.1
47+
github.com/soheilhy/cmux v0.1.4 // indirect
48+
github.com/spf13/cobra v1.2.1
49+
github.com/spf13/jwalterweatherman v1.1.0
50+
github.com/spf13/viper v1.8.1
51+
github.com/stretchr/testify v1.7.0
52+
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
53+
github.com/ugorji/go v1.1.4 // indirect
54+
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
55+
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
4056
go.bug.st/cleanup v1.0.0
4157
go.bug.st/downloader/v2 v2.1.1
4258
go.bug.st/relaxed-semver v0.0.0-20190922224835-391e10178d18
4359
go.bug.st/serial v1.1.2
4460
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 // indirect
61+
go.etcd.io/bbolt v1.3.2 // indirect
4562
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
4663
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect
47-
golang.org/x/sys v0.0.0-20210503173754-0981d6026fa6 // indirect
4864
golang.org/x/text v0.3.6
49-
google.golang.org/genproto v0.0.0-20210504143626-3b2ad6ccc450
50-
google.golang.org/grpc v1.37.0
65+
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
66+
google.golang.org/grpc v1.38.0
5167
google.golang.org/protobuf v1.26.0
5268
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
69+
gopkg.in/resty.v1 v1.12.0 // indirect
5370
gopkg.in/src-d/go-git.v4 v4.13.1
54-
gopkg.in/yaml.v2 v2.3.0
71+
gopkg.in/yaml.v2 v2.4.0
5572
)

0 commit comments

Comments
 (0)