Skip to content

Commit cc2bc56

Browse files
authored
Merge pull request #493 from fluxcd/update-deps
2 parents 4677bfd + 4ce894a commit cc2bc56

File tree

2 files changed

+72
-72
lines changed

2 files changed

+72
-72
lines changed

go.mod

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ require (
99
cloud.google.com/go/storage v1.16.0
1010
github.com/Masterminds/semver/v3 v3.1.1
1111
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7
12+
github.com/bshuster-repo/logrus-logstash-hook v1.0.2 // indirect
13+
github.com/bugsnag/bugsnag-go v2.1.2+incompatible // indirect
14+
github.com/bugsnag/panicwrap v1.3.4 // indirect
1215
github.com/cyphar/filepath-securejoin v0.2.2
16+
github.com/docker/go-metrics v0.0.1 // indirect
17+
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
1318
github.com/fluxcd/pkg/apis/meta v0.10.0
1419
github.com/fluxcd/pkg/gittestserver v0.4.2
1520
github.com/fluxcd/pkg/gitutil v0.1.0
@@ -20,16 +25,23 @@ require (
2025
github.com/fluxcd/pkg/untar v0.1.0
2126
github.com/fluxcd/pkg/version v0.1.0
2227
github.com/fluxcd/source-controller/api v0.18.0
28+
github.com/garyburd/redigo v1.6.3 // indirect
2329
github.com/go-git/go-billy/v5 v5.3.1
2430
github.com/go-git/go-git/v5 v5.4.2
2531
github.com/go-logr/logr v0.4.0
32+
github.com/gofrs/uuid v4.1.0+incompatible // indirect
2633
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2734
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
35+
github.com/gorilla/handlers v1.5.1 // indirect
36+
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
2837
github.com/libgit2/git2go/v31 v31.6.1
2938
github.com/minio/minio-go/v7 v7.0.10
3039
github.com/onsi/ginkgo v1.16.4
3140
github.com/onsi/gomega v1.14.0
3241
github.com/spf13/pflag v1.0.5
42+
github.com/yvasiyarov/go-metrics v0.0.0-20150112132944-c25f46c4b940 // indirect
43+
github.com/yvasiyarov/gorelic v0.0.7 // indirect
44+
github.com/yvasiyarov/newrelic_platform_go v0.0.0-20160601141957-9c099fbc30e9 // indirect
3345
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
3446
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect
3547
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
@@ -47,11 +59,19 @@ require (
4759
sigs.k8s.io/yaml v1.2.0
4860
)
4961

50-
// required by https://github.com/helm/helm/blob/v3.6.0/go.mod
51-
replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
62+
// Required by https://github.com/helm/helm/blob/v3.6.3/go.mod,
63+
// but overwritten with a newer version due to CVE-2017-11468.
64+
replace github.com/docker/distribution => github.com/docker/distribution v2.7.0-rc.0+incompatible
5265

53-
// fix CVE-2021-41103
54-
replace github.com/containerd/containerd => github.com/containerd/containerd v1.4.11
66+
// Fix CVE-2021-41092
67+
replace github.com/docker/cli => github.com/docker/cli v20.10.9+incompatible
5568

56-
// fix CVE-2021-30465
57-
replace github.com/opencontainers/runc => github.com/opencontainers/runc v1.0.0-rc95
69+
// Fix CVE-2021-41103
70+
// Fix CVE-2021-41190
71+
replace github.com/containerd/containerd => github.com/containerd/containerd v1.4.12
72+
73+
// Fix CVE-2021-30465
74+
replace github.com/opencontainers/runc => github.com/opencontainers/runc v1.0.2
75+
76+
// Fix CVE-2021-41190
77+
replace github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.2

0 commit comments

Comments
 (0)