Skip to content

Commit bae7e51

Browse files
Bump sigs.k8s.io/controller-tools from 0.7.0 to 0.18.0
Bumps [sigs.k8s.io/controller-tools](https://github.com/kubernetes-sigs/controller-tools) from 0.7.0 to 0.18.0. - [Release notes](https://github.com/kubernetes-sigs/controller-tools/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-tools/blob/main/envtest-releases.yaml) - [Commits](kubernetes-sigs/controller-tools@v0.7.0...v0.18.0) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-tools dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5a51bb2 commit bae7e51

File tree

3,254 files changed

+216274
-105391
lines changed

Some content is hidden

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

3,254 files changed

+216274
-105391
lines changed

go.mod

Lines changed: 66 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
module carvel.dev/kapp-controller
22

3-
go 1.23.3
3+
go 1.24.0
4+
5+
toolchain go1.24.1
46

57
require (
68
carvel.dev/vendir v0.43.0
7-
github.com/fatih/color v1.15.0 // indirect
9+
github.com/fatih/color v1.18.0 // indirect
810
github.com/gogo/protobuf v1.3.2
9-
github.com/google/go-cmp v0.6.0 // indirect
10-
github.com/prometheus/client_golang v1.18.0
11+
github.com/google/go-cmp v0.7.0 // indirect
12+
github.com/prometheus/client_golang v1.22.0
1113
github.com/stretchr/testify v1.10.0
12-
golang.org/x/crypto v0.36.0
13-
golang.org/x/text v0.23.0 // indirect
14-
golang.org/x/tools v0.26.0
14+
golang.org/x/crypto v0.37.0
15+
golang.org/x/text v0.24.0 // indirect
16+
golang.org/x/tools v0.32.0
1517
gopkg.in/yaml.v3 v3.0.1 // indirect
16-
k8s.io/api v0.30.1
17-
k8s.io/apimachinery v0.30.1
18-
k8s.io/apiserver v0.30.1
19-
k8s.io/client-go v0.30.1
20-
k8s.io/code-generator v0.30.1
18+
k8s.io/api v0.33.0
19+
k8s.io/apimachinery v0.33.0
20+
k8s.io/apiserver v0.33.0
21+
k8s.io/client-go v0.33.0
22+
k8s.io/code-generator v0.33.0
2123
k8s.io/kube-aggregator v0.22.17
22-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
24+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff
2325
sigs.k8s.io/controller-runtime v0.18.5
24-
sigs.k8s.io/controller-tools v0.7.0
26+
sigs.k8s.io/controller-tools v0.18.0
2527
sigs.k8s.io/yaml v1.4.0
2628
)
2729

@@ -30,23 +32,23 @@ require (
3032
github.com/cppforlife/go-cli-ui v0.0.0-20220425131040-94f26b16bc14
3133
github.com/go-logr/logr v1.4.2
3234
github.com/k14s/semver/v4 v4.0.1-0.20210701191048-266d47ac6115
33-
github.com/prometheus/client_model v0.5.0
34-
github.com/spf13/cobra v1.8.1
35-
golang.org/x/sync v0.12.0
35+
github.com/prometheus/client_model v0.6.1
36+
github.com/spf13/cobra v1.9.1
37+
golang.org/x/sync v0.13.0
3638
gopkg.in/yaml.v2 v2.4.0
37-
k8s.io/component-base v0.30.1
38-
k8s.io/klog/v2 v2.120.1
39-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
39+
k8s.io/component-base v0.33.0
40+
k8s.io/klog/v2 v2.130.1
41+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
4042
)
4143

4244
require (
45+
cel.dev/expr v0.19.1 // indirect
4346
github.com/NYTimes/gziphandler v1.1.1 // indirect
44-
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
45-
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
47+
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
4648
github.com/beorn7/perks v1.0.1 // indirect
4749
github.com/blang/semver/v4 v4.0.0 // indirect
4850
github.com/carvel-dev/semver/v4 v4.0.1-0.20240402203627-beb83fbf25e4 // indirect
49-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
51+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
5052
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5153
github.com/coreos/go-semver v0.3.1 // indirect
5254
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
@@ -55,76 +57,78 @@ require (
5557
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
5658
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
5759
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
58-
github.com/felixge/httpsnoop v1.0.3 // indirect
60+
github.com/felixge/httpsnoop v1.0.4 // indirect
5961
github.com/fsnotify/fsnotify v1.7.0 // indirect
62+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
6063
github.com/go-logr/stdr v1.2.2 // indirect
6164
github.com/go-logr/zapr v1.3.0 // indirect
62-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
65+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
6366
github.com/go-openapi/jsonreference v0.20.2 // indirect
64-
github.com/go-openapi/swag v0.22.3 // indirect
65-
github.com/gobuffalo/flect v0.2.3 // indirect
66-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
67+
github.com/go-openapi/swag v0.23.0 // indirect
68+
github.com/gobuffalo/flect v1.0.3 // indirect
6769
github.com/golang/protobuf v1.5.4 // indirect
68-
github.com/google/cel-go v0.17.8 // indirect
69-
github.com/google/gnostic-models v0.6.8 // indirect
70-
github.com/google/gofuzz v1.2.0 // indirect
70+
github.com/google/btree v1.1.3 // indirect
71+
github.com/google/cel-go v0.23.2 // indirect
72+
github.com/google/gnostic-models v0.6.9 // indirect
7173
github.com/google/uuid v1.6.0 // indirect
7274
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
73-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
75+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
7476
github.com/hashicorp/go-version v1.2.1 // indirect
75-
github.com/imdario/mergo v0.3.12 // indirect
7677
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7778
github.com/josharian/intern v1.0.0 // indirect
7879
github.com/json-iterator/go v1.1.12 // indirect
80+
github.com/kylelemons/godebug v1.1.0 // indirect
7981
github.com/mailru/easyjson v0.7.7 // indirect
8082
github.com/mattn/go-colorable v0.1.13 // indirect
8183
github.com/mattn/go-isatty v0.0.20 // indirect
82-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
8384
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8485
github.com/modern-go/reflect2 v1.0.2 // indirect
8586
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8687
github.com/pkg/errors v0.9.1 // indirect
8788
github.com/pmezard/go-difflib v1.0.0 // indirect
88-
github.com/prometheus/common v0.45.0 // indirect
89-
github.com/prometheus/procfs v0.12.0 // indirect
90-
github.com/spf13/pflag v1.0.5 // indirect
91-
github.com/stoewer/go-strcase v1.2.0 // indirect
89+
github.com/prometheus/common v0.62.0 // indirect
90+
github.com/prometheus/procfs v0.15.1 // indirect
91+
github.com/spf13/pflag v1.0.6 // indirect
92+
github.com/stoewer/go-strcase v1.3.0 // indirect
9293
github.com/vito/go-interact v1.0.1 // indirect
93-
go.etcd.io/etcd/api/v3 v3.5.10 // indirect
94-
go.etcd.io/etcd/client/pkg/v3 v3.5.10 // indirect
95-
go.etcd.io/etcd/client/v3 v3.5.10 // indirect
94+
github.com/x448/float16 v0.8.4 // indirect
95+
go.etcd.io/etcd/api/v3 v3.5.21 // indirect
96+
go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect
97+
go.etcd.io/etcd/client/v3 v3.5.21 // indirect
9698
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9799
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
98-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect
100+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
99101
go.opentelemetry.io/otel v1.34.0 // indirect
100-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 // indirect
101-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 // indirect
102+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
103+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
102104
go.opentelemetry.io/otel/metric v1.34.0 // indirect
103-
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
105+
go.opentelemetry.io/otel/sdk v1.33.0 // indirect
104106
go.opentelemetry.io/otel/trace v1.34.0 // indirect
105-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
107+
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
106108
go.uber.org/multierr v1.11.0 // indirect
107-
go.uber.org/zap v1.26.0 // indirect
108-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
109-
golang.org/x/mod v0.21.0 // indirect
110-
golang.org/x/net v0.38.0 // indirect
111-
golang.org/x/oauth2 v0.24.0 // indirect
112-
golang.org/x/sys v0.31.0 // indirect
113-
golang.org/x/term v0.30.0 // indirect
114-
golang.org/x/time v0.3.0 // indirect
109+
go.uber.org/zap v1.27.0 // indirect
110+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
111+
golang.org/x/mod v0.24.0 // indirect
112+
golang.org/x/net v0.39.0 // indirect
113+
golang.org/x/oauth2 v0.27.0 // indirect
114+
golang.org/x/sys v0.32.0 // indirect
115+
golang.org/x/term v0.31.0 // indirect
116+
golang.org/x/time v0.9.0 // indirect
115117
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
116-
google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a // indirect
118+
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
117119
google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287 // indirect
118120
google.golang.org/grpc v1.70.0 // indirect
119-
google.golang.org/protobuf v1.36.4 // indirect
121+
google.golang.org/protobuf v1.36.5 // indirect
122+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
120123
gopkg.in/inf.v0 v0.9.1 // indirect
121124
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
122-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
123-
k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 // indirect
124-
k8s.io/kms v0.30.1 // indirect
125-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect
126-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
127-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
125+
k8s.io/apiextensions-apiserver v0.33.0 // indirect
126+
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
127+
k8s.io/kms v0.33.0 // indirect
128+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
129+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
130+
sigs.k8s.io/randfill v1.0.0 // indirect
131+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
128132
)
129133

130134
replace cloud.google.com/go => cloud.google.com/go v0.60.0

0 commit comments

Comments
 (0)