Skip to content

Commit f553a97

Browse files
authored
Upgrade dependencies with security issues (#1849)
1 parent bca3405 commit f553a97

File tree

3 files changed

+510
-54
lines changed

3 files changed

+510
-54
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ gotestsumcmd := $(shell command -v gotestsum 2> /dev/null)
263263

264264
test-tools: ## install test tools
265265
ifndef gotestsumcmd
266-
go get gotest.tools/gotestsum
266+
go install gotest.tools/gotestsum@v1.8.1
267267
endif
268268
@env CGO_ENABLED=0 go build -ldflags="-s -w" -o $(BUILD_DIR)/test2json cmd/test2json
269269

@@ -272,7 +272,7 @@ LINTER := $(shell command -v gometalinter 2> /dev/null)
272272
get-linters:
273273
ifndef LINTER
274274
@echo "# installing linters"
275-
go get -v github.com/alecthomas/gometalinter
275+
go install github.com/alecthomas/gometalinter@latest
276276
gometalinter --install
277277
endif
278278

go.mod

+23-22
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
git.fd.io/govpp.git v0.4.1-0.20220519085400-f06c92da266e
77
github.com/alecthomas/jsonschema v0.0.0-20200217214135-7152f22193c9
88
github.com/common-nighthawk/go-figure v0.0.0-20200609044655-c4b36f998cf2
9-
github.com/coreos/go-iptables v0.4.5
10-
github.com/docker/cli v0.0.0-20190822175708-578ab52ece34
9+
github.com/coreos/go-iptables v0.5.0
10+
github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017
1111
github.com/docker/docker v20.10.12+incompatible
1212
github.com/fsouza/go-dockerclient v1.6.6
1313
github.com/ghodss/yaml v1.0.0
@@ -34,22 +34,22 @@ require (
3434
github.com/spf13/pflag v1.0.5
3535
github.com/spf13/viper v1.7.0
3636
github.com/unrolled/render v0.0.0-20180914162206-b9786414de4d
37-
github.com/vishvananda/netlink v1.1.0
38-
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df
37+
github.com/vishvananda/netlink v1.2.1-beta.2
38+
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74
3939
github.com/xeipuuv/gojsonschema v1.1.0
4040
go.etcd.io/etcd/client/v3 v3.5.1
4141
go.ligato.io/cn-infra/v2 v2.5.0-alpha.0.20220211111933-3d9ff310b1fa
42-
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420
43-
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6
44-
google.golang.org/grpc v1.38.0
45-
google.golang.org/protobuf v1.27.1
42+
golang.org/x/net v0.0.0-20220607020251-c690dde0001d
43+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
44+
google.golang.org/grpc v1.47.0
45+
google.golang.org/protobuf v1.28.0
4646
)
4747

4848
require (
4949
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
5050
github.com/DataDog/zstd v1.3.5 // indirect
51-
github.com/Microsoft/go-winio v0.4.15-0.20200113171025-3fe6c5262873 // indirect
52-
github.com/Microsoft/hcsshim v0.8.9 // indirect
51+
github.com/Microsoft/go-winio v0.5.2 // indirect
52+
github.com/Microsoft/hcsshim v0.9.3 // indirect
5353
github.com/Shopify/sarama v1.20.1 // indirect
5454
github.com/alicebob/miniredis v2.5.0+incompatible // indirect
5555
github.com/armon/go-metrics v0.3.9 // indirect
@@ -58,8 +58,9 @@ require (
5858
github.com/bshuster-repo/logrus-logstash-hook v0.4.1 // indirect
5959
github.com/bsm/sarama-cluster v2.1.15+incompatible // indirect
6060
github.com/cespare/xxhash/v2 v2.1.1 // indirect
61-
github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f // indirect
62-
github.com/containerd/containerd v1.4.12 // indirect
61+
github.com/containerd/cgroups v1.0.4 // indirect
62+
github.com/containerd/containerd v1.5.13 // indirect
63+
github.com/containerd/continuity v0.3.0 // indirect
6364
github.com/coreos/go-semver v0.3.0 // indirect
6465
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
6566
github.com/creack/pty v1.1.11 // indirect
@@ -73,6 +74,7 @@ require (
7374
github.com/fatih/color v1.10.0 // indirect
7475
github.com/fluent/fluent-logger-golang v1.3.0 // indirect
7576
github.com/fogleman/gg v1.3.0 // indirect
77+
github.com/frankban/quicktest v1.14.0 // indirect
7678
github.com/fsnotify/fsnotify v1.4.9 // indirect
7779
github.com/ftrvxmtrx/fd v0.0.0-20150925145434-c6d800382fff // indirect
7880
github.com/go-redis/redis v6.14.2+incompatible // indirect
@@ -97,23 +99,23 @@ require (
9799
github.com/mattn/go-colorable v0.1.8 // indirect
98100
github.com/mattn/go-isatty v0.0.12 // indirect
99101
github.com/mattn/go-runewidth v0.0.7 // indirect
100-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
102+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
101103
github.com/mitchellh/go-homedir v1.1.0 // indirect
102104
github.com/moby/sys/mount v0.1.0 // indirect
103-
github.com/moby/sys/mountinfo v0.4.1 // indirect
105+
github.com/moby/sys/mountinfo v0.6.2 // indirect
104106
github.com/moby/term v0.0.0-20200429084858-129dac9f73f6 // indirect
105107
github.com/morikuni/aec v1.0.0 // indirect
106-
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
108+
github.com/opencontainers/go-digest v1.0.0 // indirect
107109
github.com/opencontainers/image-spec v1.0.2 // indirect
108-
github.com/opencontainers/runc v1.0.3 // indirect
109-
github.com/pelletier/go-toml v1.2.0 // indirect
110+
github.com/opencontainers/runc v1.1.2 // indirect
111+
github.com/pelletier/go-toml v1.8.1 // indirect
110112
github.com/philhofer/fwd v1.0.0 // indirect
111113
github.com/pierrec/lz4 v2.3.0+incompatible // indirect
112114
github.com/prometheus/client_model v0.2.0 // indirect
113115
github.com/prometheus/common v0.26.0 // indirect
114116
github.com/prometheus/procfs v0.6.0 // indirect
115117
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect
116-
github.com/spf13/afero v1.1.2 // indirect
118+
github.com/spf13/afero v1.2.2 // indirect
117119
github.com/spf13/cast v1.3.0 // indirect
118120
github.com/spf13/jwalterweatherman v1.0.0 // indirect
119121
github.com/subosito/gotenv v1.2.0 // indirect
@@ -127,13 +129,12 @@ require (
127129
go.uber.org/atomic v1.7.0 // indirect
128130
go.uber.org/multierr v1.6.0 // indirect
129131
go.uber.org/zap v1.17.0 // indirect
130-
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect
132+
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
131133
golang.org/x/image v0.0.0-20200119044424-58c23975cae1 // indirect
132-
golang.org/x/text v0.3.6 // indirect
134+
golang.org/x/text v0.3.7 // indirect
133135
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
134136
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
135-
google.golang.org/genproto v0.0.0-20210629200056-84d6f6074151 // indirect
137+
google.golang.org/genproto v0.0.0-20220607223854-30acc4cbd2aa // indirect
136138
gopkg.in/ini.v1 v1.51.0 // indirect
137139
gopkg.in/yaml.v2 v2.4.0 // indirect
138-
gotest.tools/v3 v3.0.3 // indirect
139140
)

0 commit comments

Comments
 (0)