Skip to content

Commit 9d47b30

Browse files
committed
Bump golang, k8s
Signed-off-by: Catherine Chan-Tse <[email protected]>
1 parent 06cc99c commit 9d47b30

15 files changed

+656
-530
lines changed

go.mod

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
module github.com/operator-framework/ansible-operator-plugins
22

3-
go 1.19
3+
go 1.20
44

55
require (
6-
github.com/go-logr/logr v1.2.3
6+
github.com/go-logr/logr v1.2.4
77
github.com/kr/text v0.2.0
88
github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2
9-
github.com/onsi/ginkgo/v2 v2.7.0
10-
github.com/onsi/gomega v1.24.2
11-
github.com/operator-framework/operator-lib v0.11.1-0.20230306195046-28cadc6b6055
9+
github.com/onsi/ginkgo/v2 v2.9.5
10+
github.com/onsi/gomega v1.27.7
11+
github.com/operator-framework/operator-lib v0.11.1-0.20230717184314-6efbe3a22f6f
1212
github.com/operator-framework/operator-registry v1.28.0
13-
github.com/prometheus/client_golang v1.14.0
14-
github.com/prometheus/client_model v0.3.0
13+
github.com/prometheus/client_golang v1.15.1
14+
github.com/prometheus/client_model v0.4.0
1515
github.com/sirupsen/logrus v1.9.3
1616
github.com/spf13/afero v1.9.3
17-
github.com/spf13/cobra v1.6.1
17+
github.com/spf13/cobra v1.7.0
1818
github.com/spf13/pflag v1.0.5
1919
github.com/spf13/viper v1.10.0
20-
github.com/stretchr/testify v1.8.2
21-
golang.org/x/text v0.9.0
22-
k8s.io/api v0.26.2
23-
k8s.io/apiextensions-apiserver v0.26.2
24-
k8s.io/apimachinery v0.26.2
25-
k8s.io/client-go v0.26.2
20+
github.com/stretchr/testify v1.8.3
21+
golang.org/x/text v0.13.0
22+
k8s.io/api v0.27.2
23+
k8s.io/apiextensions-apiserver v0.27.2
24+
k8s.io/apimachinery v0.27.2
25+
k8s.io/client-go v0.27.2
2626
k8s.io/kubectl v0.26.2
2727
k8s.io/utils v0.0.0-20230711102312-30195339c3c7
28-
sigs.k8s.io/controller-runtime v0.14.5
28+
sigs.k8s.io/controller-runtime v0.15.0
2929
sigs.k8s.io/kubebuilder/v3 v3.9.1
3030
sigs.k8s.io/yaml v1.3.0
3131
)
3232

33-
require github.com/operator-framework/api v0.17.4-0.20230223191600-0131a6301e42 // indirect
33+
require github.com/operator-framework/api v0.17.7-0.20230626210316-aa3e49803e7b // indirect
3434

3535
require (
3636
github.com/Microsoft/hcsshim v0.9.4 // indirect
37-
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
37+
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
3838
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
3939
github.com/benbjohnson/clock v1.3.0 // indirect
4040
github.com/beorn7/perks v1.0.1 // indirect
@@ -50,29 +50,30 @@ require (
5050
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
5151
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
5252
github.com/fsnotify/fsnotify v1.6.0 // indirect
53-
github.com/go-logr/zapr v1.2.3 // indirect
54-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
55-
github.com/go-openapi/jsonreference v0.20.0 // indirect
53+
github.com/go-logr/zapr v1.2.4 // indirect
54+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
55+
github.com/go-openapi/jsonreference v0.20.1 // indirect
5656
github.com/go-openapi/swag v0.22.3 // indirect
57+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
5758
github.com/gobuffalo/flect v1.0.0 // indirect
5859
github.com/gofrs/uuid v4.0.0+incompatible // indirect
5960
github.com/gogo/protobuf v1.3.2 // indirect
6061
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
61-
github.com/golang/protobuf v1.5.2 // indirect
62-
github.com/google/cel-go v0.12.6 // indirect
62+
github.com/golang/protobuf v1.5.3 // indirect
63+
github.com/google/cel-go v0.15.3 // indirect
6364
github.com/google/gnostic v0.6.9 // indirect
6465
github.com/google/go-cmp v0.5.9 // indirect
6566
github.com/google/gofuzz v1.2.0 // indirect
67+
github.com/google/pprof v0.0.0-20230510103437-eeec1cb781c3 // indirect
6668
github.com/google/uuid v1.3.0 // indirect
6769
github.com/gorilla/handlers v1.5.1 // indirect
6870
github.com/h2non/filetype v1.1.1 // indirect
6971
github.com/h2non/go-is-svg v0.0.0-20160927212452-35e8c4b0612c // indirect
7072
github.com/hashicorp/hcl v1.0.0 // indirect
7173
github.com/imdario/mergo v0.3.13 // indirect
72-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
74+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7375
github.com/josharian/intern v1.0.0 // indirect
7476
github.com/json-iterator/go v1.1.12 // indirect
75-
github.com/kr/pretty v0.3.1 // indirect
7677
github.com/magiconair/properties v1.8.5 // indirect
7778
github.com/mailru/easyjson v0.7.7 // indirect
7879
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
@@ -86,8 +87,8 @@ require (
8687
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 // indirect
8788
github.com/pkg/errors v0.9.1 // indirect
8889
github.com/pmezard/go-difflib v1.0.0 // indirect
89-
github.com/prometheus/common v0.37.0 // indirect
90-
github.com/prometheus/procfs v0.8.0 // indirect
90+
github.com/prometheus/common v0.42.0 // indirect
91+
github.com/prometheus/procfs v0.9.0 // indirect
9192
github.com/spf13/cast v1.5.0 // indirect
9293
github.com/spf13/jwalterweatherman v1.1.0 // indirect
9394
github.com/stoewer/go-strcase v1.2.0 // indirect
@@ -96,29 +97,29 @@ require (
9697
go.opentelemetry.io/otel/sdk v1.14.0 // indirect
9798
go.opentelemetry.io/otel/trace v1.14.0 // indirect
9899
go.uber.org/atomic v1.10.0 // indirect
99-
go.uber.org/goleak v1.2.1 // indirect
100100
go.uber.org/multierr v1.8.0 // indirect
101101
go.uber.org/zap v1.24.0 // indirect
102+
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
102103
golang.org/x/mod v0.10.0 // indirect
103-
golang.org/x/net v0.10.0 // indirect
104+
golang.org/x/net v0.17.0 // indirect
104105
golang.org/x/oauth2 v0.6.0 // indirect
105-
golang.org/x/sys v0.8.0 // indirect
106-
golang.org/x/term v0.8.0 // indirect
106+
golang.org/x/sys v0.13.0 // indirect
107+
golang.org/x/term v0.13.0 // indirect
107108
golang.org/x/time v0.3.0 // indirect
108109
golang.org/x/tools v0.9.1 // indirect
109-
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
110+
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect
110111
google.golang.org/appengine v1.6.7 // indirect
111-
google.golang.org/genproto v0.0.0-20230320184635-7606e756e683 // indirect
112-
google.golang.org/grpc v1.53.0 // indirect
113-
google.golang.org/protobuf v1.29.1 // indirect
112+
google.golang.org/genproto v0.0.0-20230525154841-bd750badd5c6 // indirect
113+
google.golang.org/grpc v1.54.0 // indirect
114+
google.golang.org/protobuf v1.30.0 // indirect
114115
gopkg.in/inf.v0 v0.9.1 // indirect
115116
gopkg.in/ini.v1 v1.66.2 // indirect
116117
gopkg.in/yaml.v2 v2.4.0 // indirect
117118
gopkg.in/yaml.v3 v3.0.1 // indirect
118-
k8s.io/component-base v0.26.2 // indirect
119+
k8s.io/component-base v0.27.2 // indirect
119120
k8s.io/klog/v2 v2.90.1 // indirect
120-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
121-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
121+
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
122+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
122123
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
123124
)
124125

0 commit comments

Comments
 (0)