Skip to content

Commit 03d2bf0

Browse files
authoredSep 8, 2023
Update operator-registry ref to 1.29.0 (#3030)
Incrementing the operator-registry version ref to resolve a cve in a transient dependency. Updating golang-migrate removes a dependency to mongo-driver. Resolves GHSA-f6mq-5m25-4r72 Signed-off-by: kevinrizza <[email protected]>
1 parent c0c61fe commit 03d2bf0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1535
-639
lines changed
 

Diff for: ‎go.mod

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require (
2626
github.com/openshift/api v3.9.0+incompatible
2727
github.com/openshift/client-go v0.0.0-20220525160904-9e1acff93e4a
2828
github.com/operator-framework/api v0.17.8-0.20230803152844-704ae942c4a9
29-
github.com/operator-framework/operator-registry v1.27.1
29+
github.com/operator-framework/operator-registry v1.29.0
3030
github.com/otiai10/copy v1.2.0
3131
github.com/pkg/errors v0.9.1
3232
github.com/prometheus/client_golang v1.15.1
@@ -62,15 +62,15 @@ replace google.golang.org/grpc => google.golang.org/grpc v1.40.0
6262

6363
require (
6464
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 // indirect
65-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
65+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
6666
github.com/BurntSushi/toml v1.2.1 // indirect
6767
github.com/MakeNowJust/heredoc v1.0.0 // indirect
6868
github.com/Masterminds/goutils v1.1.1 // indirect
6969
github.com/Masterminds/semver/v3 v3.2.1 // indirect
7070
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
7171
github.com/Masterminds/squirrel v1.5.4 // indirect
7272
github.com/Masterminds/vcs v1.13.3 // indirect
73-
github.com/Microsoft/go-winio v0.6.0 // indirect
73+
github.com/Microsoft/go-winio v0.6.1 // indirect
7474
github.com/Microsoft/hcsshim v0.10.0-rc.7 // indirect
7575
github.com/NYTimes/gziphandler v1.1.1 // indirect
7676
github.com/adrg/xdg v0.4.0 // indirect
@@ -115,7 +115,7 @@ require (
115115
github.com/goccy/go-yaml v1.8.1 // indirect
116116
github.com/gofrs/flock v0.8.1 // indirect
117117
github.com/gogo/protobuf v1.3.2 // indirect
118-
github.com/golang-migrate/migrate/v4 v4.6.2 // indirect
118+
github.com/golang-migrate/migrate/v4 v4.16.1 // indirect
119119
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
120120
github.com/golang/protobuf v1.5.3 // indirect
121121
github.com/google/btree v1.0.1 // indirect
@@ -154,7 +154,7 @@ require (
154154
github.com/mattn/go-colorable v0.1.13 // indirect
155155
github.com/mattn/go-isatty v0.0.17 // indirect
156156
github.com/mattn/go-runewidth v0.0.9 // indirect
157-
github.com/mattn/go-sqlite3 v1.14.15 // indirect
157+
github.com/mattn/go-sqlite3 v1.14.16 // indirect
158158
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
159159
github.com/mitchellh/copystructure v1.2.0 // indirect
160160
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
@@ -163,7 +163,7 @@ require (
163163
github.com/moby/spdystream v0.2.0 // indirect
164164
github.com/moby/sys/mountinfo v0.6.2 // indirect
165165
github.com/moby/sys/sequential v0.5.0 // indirect
166-
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
166+
github.com/moby/term v0.5.0 // indirect
167167
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
168168
github.com/modern-go/reflect2 v1.0.2 // indirect
169169
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
@@ -205,7 +205,7 @@ require (
205205
go.uber.org/multierr v1.6.0 // indirect
206206
go.uber.org/zap v1.24.0 // indirect
207207
golang.org/x/crypto v0.7.0 // indirect
208-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
208+
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
209209
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
210210
golang.org/x/mod v0.10.0 // indirect
211211
golang.org/x/oauth2 v0.5.0 // indirect

Diff for: ‎go.sum

+14-107
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.