Skip to content

Commit 7db1a0a

Browse files
authored
update deps to fix some vulnerabilities (#51)
1 parent 8a97790 commit 7db1a0a

File tree

8 files changed

+546
-80
lines changed

8 files changed

+546
-80
lines changed

api/grpc/health/v1/health.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/iam.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/meta.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/project.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/quota.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/tenant.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 94 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/metal-stack/masterdata-api
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/Masterminds/squirrel v1.5.1
7-
github.com/google/go-cmp v0.5.6
6+
github.com/Masterminds/squirrel v1.5.2
7+
github.com/google/go-cmp v0.5.7
88
github.com/google/uuid v1.3.0
99
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
1010
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
@@ -15,13 +15,98 @@ require (
1515
github.com/metal-stack/metal-lib v0.9.0
1616
github.com/metal-stack/security v0.6.3
1717
github.com/metal-stack/v v1.0.3
18-
github.com/prometheus/client_golang v1.11.0
19-
github.com/spf13/cobra v1.2.1
20-
github.com/spf13/viper v1.9.0
18+
github.com/prometheus/client_golang v1.12.1
19+
github.com/spf13/cobra v1.3.0
20+
github.com/spf13/viper v1.10.1
2121
github.com/stretchr/testify v1.7.0
22-
github.com/testcontainers/testcontainers-go v0.11.1
23-
go.uber.org/zap v1.19.1
24-
google.golang.org/grpc v1.42.0
22+
github.com/testcontainers/testcontainers-go v0.12.0
23+
go.uber.org/zap v1.21.0
24+
google.golang.org/grpc v1.44.0
2525
google.golang.org/protobuf v1.27.1
2626
sigs.k8s.io/yaml v1.3.0
2727
)
28+
29+
require (
30+
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
31+
github.com/Microsoft/go-winio v0.5.1 // indirect
32+
github.com/Microsoft/hcsshim v0.9.2 // indirect
33+
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
34+
github.com/beorn7/perks v1.0.1 // indirect
35+
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
36+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
37+
github.com/containerd/cgroups v1.0.3 // indirect
38+
github.com/containerd/containerd v1.6.0 // indirect
39+
github.com/coreos/go-oidc/v3 v3.1.0 // indirect
40+
github.com/davecgh/go-spew v1.1.1 // indirect
41+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.0-20210816181553-5444fa50b93d // indirect
42+
github.com/docker/distribution v2.8.0+incompatible // indirect
43+
github.com/docker/docker v20.10.11+incompatible // indirect
44+
github.com/docker/go-connections v0.4.0 // indirect
45+
github.com/docker/go-units v0.4.0 // indirect
46+
github.com/fsnotify/fsnotify v1.5.1 // indirect
47+
github.com/go-logr/logr v1.2.2 // indirect
48+
github.com/go-openapi/errors v0.19.6 // indirect
49+
github.com/go-openapi/runtime v0.20.0 // indirect
50+
github.com/go-openapi/strfmt v0.19.5 // indirect
51+
github.com/go-openapi/swag v0.19.14 // indirect
52+
github.com/go-stack/stack v1.8.0 // indirect
53+
github.com/goccy/go-json v0.7.8 // indirect
54+
github.com/gogo/protobuf v1.3.2 // indirect
55+
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
56+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
57+
github.com/golang/protobuf v1.5.2 // indirect
58+
github.com/gorilla/mux v1.8.0 // indirect
59+
github.com/hashicorp/hcl v1.0.0 // indirect
60+
github.com/icza/dyno v0.0.0-20210726202311-f1bafe5d9996 // indirect
61+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
62+
github.com/josharian/intern v1.0.0 // indirect
63+
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
64+
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
65+
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
66+
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
67+
github.com/lestrrat-go/httpcc v1.0.0 // indirect
68+
github.com/lestrrat-go/iter v1.0.1 // indirect
69+
github.com/lestrrat-go/jwx v1.2.7 // indirect
70+
github.com/lestrrat-go/option v1.0.0 // indirect
71+
github.com/magiconair/properties v1.8.5 // indirect
72+
github.com/mailru/easyjson v0.7.6 // indirect
73+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
74+
github.com/mitchellh/mapstructure v1.4.3 // indirect
75+
github.com/moby/sys/mount v0.2.0 // indirect
76+
github.com/moby/sys/mountinfo v0.5.0 // indirect
77+
github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect
78+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
79+
github.com/modern-go/reflect2 v1.0.2 // indirect
80+
github.com/morikuni/aec v1.0.0 // indirect
81+
github.com/opencontainers/go-digest v1.0.0 // indirect
82+
github.com/opencontainers/image-spec v1.0.2 // indirect
83+
github.com/opencontainers/runc v1.1.0 // indirect
84+
github.com/pelletier/go-toml v1.9.4 // indirect
85+
github.com/pkg/errors v0.9.1 // indirect
86+
github.com/pmezard/go-difflib v1.0.0 // indirect
87+
github.com/prometheus/client_model v0.2.0 // indirect
88+
github.com/prometheus/common v0.32.1 // indirect
89+
github.com/prometheus/procfs v0.7.3 // indirect
90+
github.com/sirupsen/logrus v1.8.1 // indirect
91+
github.com/spf13/afero v1.6.0 // indirect
92+
github.com/spf13/cast v1.4.1 // indirect
93+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
94+
github.com/spf13/pflag v1.0.5 // indirect
95+
github.com/stretchr/objx v0.2.0 // indirect
96+
github.com/subosito/gotenv v1.2.0 // indirect
97+
go.mongodb.org/mongo-driver v1.8.3 // indirect
98+
go.opencensus.io v0.23.0 // indirect
99+
go.uber.org/atomic v1.7.0 // indirect
100+
go.uber.org/multierr v1.6.0 // indirect
101+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
102+
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
103+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
104+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
105+
golang.org/x/text v0.3.7 // indirect
106+
google.golang.org/appengine v1.6.7 // indirect
107+
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
108+
gopkg.in/ini.v1 v1.66.2 // indirect
109+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
110+
gopkg.in/yaml.v2 v2.4.0 // indirect
111+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
112+
)

0 commit comments

Comments
 (0)