Skip to content

Commit 90e1bde

Browse files
Bump the k8sio group across 1 directory with 5 updates
Bumps the k8sio group with 2 updates in the / directory: [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) and [k8s.io/dynamic-resource-allocation](https://github.com/kubernetes/dynamic-resource-allocation). Updates `k8s.io/apiextensions-apiserver` from 0.33.1 to 0.34.0 - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](kubernetes/apiextensions-apiserver@v0.33.1...v0.34.0) Updates `k8s.io/apimachinery` from 0.33.4 to 0.34.0 - [Commits](kubernetes/apimachinery@v0.33.4...v0.34.0) Updates `k8s.io/client-go` from 0.33.4 to 0.34.0 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.33.4...v0.34.0) Updates `k8s.io/dynamic-resource-allocation` from 0.33.4 to 0.34.0 - [Commits](kubernetes/dynamic-resource-allocation@v0.33.4...v0.34.0) Updates `k8s.io/utils` from 0.0.0-20241210054802-24370beab758 to 0.0.0-20250604170112-4c0f3b243397 - [Commits](https://github.com/kubernetes/utils/commits) --- updated-dependencies: - dependency-name: k8s.io/apiextensions-apiserver dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8sio - dependency-name: k8s.io/apimachinery dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8sio - dependency-name: k8s.io/client-go dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8sio - dependency-name: k8s.io/dynamic-resource-allocation dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8sio - dependency-name: k8s.io/utils dependency-version: 0.0.0-20250604170112-4c0f3b243397 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8sio ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3ff2e94 commit 90e1bde

File tree

1,015 files changed

+74976
-66407
lines changed

Some content is hidden

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

1,015 files changed

+74976
-66407
lines changed

go.mod

Lines changed: 33 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/blang/semver/v4 v4.0.0
1111
github.com/go-git/go-git/v5 v5.12.0
1212
github.com/go-logr/logr v1.4.2
13-
github.com/google/cel-go v0.23.2
13+
github.com/google/cel-go v0.26.0
1414
github.com/kserve/kserve v0.15.0
1515
github.com/mittwald/go-helm-client v0.12.13
1616
github.com/onsi/ginkgo/v2 v2.23.4
@@ -21,21 +21,21 @@ require (
2121
github.com/prometheus/client_model v0.6.1
2222
gopkg.in/yaml.v3 v3.0.1
2323
helm.sh/helm/v3 v3.16.1
24-
k8s.io/api v0.33.4
25-
k8s.io/apiextensions-apiserver v0.33.1
26-
k8s.io/apimachinery v0.33.4
27-
k8s.io/client-go v0.33.4
28-
k8s.io/dynamic-resource-allocation v0.33.4
29-
k8s.io/utils v0.0.0-20241210054802-24370beab758
24+
k8s.io/api v0.34.1
25+
k8s.io/apiextensions-apiserver v0.34.1
26+
k8s.io/apimachinery v0.34.1
27+
k8s.io/client-go v0.34.1
28+
k8s.io/dynamic-resource-allocation v0.34.1
29+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
3030
knative.dev/pkg v0.0.0-20250117084104-c43477f0052b
3131
sigs.k8s.io/controller-runtime v0.20.4
3232
sigs.k8s.io/gateway-api v1.3.0
3333
sigs.k8s.io/lws v0.6.2
34-
sigs.k8s.io/yaml v1.4.0
34+
sigs.k8s.io/yaml v1.6.0
3535
)
3636

3737
require (
38-
cel.dev/expr v0.19.1 // indirect
38+
cel.dev/expr v0.24.0 // indirect
3939
cloud.google.com/go v0.116.0 // indirect
4040
cloud.google.com/go/auth v0.15.0 // indirect
4141
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
@@ -47,14 +47,14 @@ require (
4747
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
4848
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
4949
github.com/BurntSushi/toml v1.3.2 // indirect
50-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
50+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.26.0 // indirect
5151
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
5252
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
5353
github.com/MakeNowJust/heredoc v1.0.0 // indirect
5454
github.com/Masterminds/goutils v1.1.1 // indirect
5555
github.com/Masterminds/semver/v3 v3.3.0 // indirect
5656
github.com/Masterminds/squirrel v1.5.4 // indirect
57-
github.com/Microsoft/go-winio v0.6.1 // indirect
57+
github.com/Microsoft/go-winio v0.6.2 // indirect
5858
github.com/Microsoft/hcsshim v0.11.4 // indirect
5959
github.com/ProtonMail/go-crypto v1.0.0 // indirect
6060
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
@@ -66,7 +66,7 @@ require (
6666
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6767
github.com/chai2010/gettext-go v1.0.2 // indirect
6868
github.com/cloudflare/circl v1.3.7 // indirect
69-
github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3 // indirect
69+
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
7070
github.com/containerd/containerd v1.7.12 // indirect
7171
github.com/containerd/log v0.1.0 // indirect
7272
github.com/cyphar/filepath-securejoin v0.3.1 // indirect
@@ -87,12 +87,13 @@ require (
8787
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
8888
github.com/fatih/color v1.18.0 // indirect
8989
github.com/felixge/httpsnoop v1.0.4 // indirect
90-
github.com/fsnotify/fsnotify v1.8.0 // indirect
91-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
90+
github.com/fsnotify/fsnotify v1.9.0 // indirect
91+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
9292
github.com/go-errors/errors v1.5.1 // indirect
9393
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
9494
github.com/go-git/go-billy/v5 v5.5.0 // indirect
9595
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
96+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
9697
github.com/go-logr/stdr v1.2.2 // indirect
9798
github.com/go-logr/zapr v1.3.0 // indirect
9899
github.com/go-openapi/jsonpointer v0.21.1 // indirect
@@ -105,7 +106,7 @@ require (
105106
github.com/gogo/protobuf v1.3.2 // indirect
106107
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
107108
github.com/google/btree v1.1.3 // indirect
108-
github.com/google/gnostic-models v0.6.9 // indirect
109+
github.com/google/gnostic-models v0.7.0 // indirect
109110
github.com/google/go-cmp v0.7.0 // indirect
110111
github.com/google/go-containerregistry v0.14.0 // indirect
111112
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
@@ -119,7 +120,7 @@ require (
119120
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
120121
github.com/gosuri/uitable v0.0.4 // indirect
121122
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
122-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
123+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
123124
github.com/hashicorp/errwrap v1.1.0 // indirect
124125
github.com/hashicorp/go-multierror v1.1.1 // indirect
125126
github.com/huandu/xstrings v1.5.0 // indirect
@@ -147,7 +148,7 @@ require (
147148
github.com/moby/spdystream v0.5.0 // indirect
148149
github.com/moby/term v0.5.0 // indirect
149150
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
150-
github.com/modern-go/reflect2 v1.0.2 // indirect
151+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
151152
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
152153
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
153154
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
@@ -157,6 +158,7 @@ require (
157158
github.com/pjbgf/sha1cd v0.3.0 // indirect
158159
github.com/pkg/errors v0.9.1 // indirect
159160
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
161+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
160162
github.com/prometheus/common v0.63.0 // indirect
161163
github.com/prometheus/procfs v0.15.1 // indirect
162164
github.com/rivo/uniseg v0.4.4 // indirect
@@ -169,33 +171,36 @@ require (
169171
github.com/spf13/cast v1.7.0 // indirect
170172
github.com/spf13/cobra v1.9.1 // indirect
171173
github.com/spf13/pflag v1.0.6 // indirect
174+
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
172175
github.com/stoewer/go-strcase v1.3.0 // indirect
173176
github.com/x448/float16 v0.8.4 // indirect
174177
github.com/xanzy/ssh-agent v0.3.3 // indirect
175178
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
176179
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
177180
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
178181
github.com/xlab/treeprint v1.2.0 // indirect
182+
github.com/zeebo/errs v1.4.0 // indirect
179183
go.opencensus.io v0.24.0 // indirect
180184
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
181185
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
182-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
186+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
183187
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
184188
go.opentelemetry.io/otel v1.35.0 // indirect
185-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
186-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
189+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
190+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
187191
go.opentelemetry.io/otel/metric v1.35.0 // indirect
188192
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
189193
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
190194
go.opentelemetry.io/otel/trace v1.35.0 // indirect
191-
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
195+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
192196
go.starlark.net v0.0.0-20231121155337-90ade8b19d09 // indirect
193197
go.uber.org/automaxprocs v1.6.0 // indirect
194198
go.uber.org/multierr v1.11.0 // indirect
195199
go.uber.org/zap v1.27.0 // indirect
200+
go.yaml.in/yaml/v2 v2.4.2 // indirect
201+
go.yaml.in/yaml/v3 v3.0.4 // indirect
196202
golang.org/x/crypto v0.37.0 // indirect
197203
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
198-
golang.org/x/mod v0.24.0 // indirect
199204
golang.org/x/net v0.39.0 // indirect
200205
golang.org/x/oauth2 v0.28.0 // indirect
201206
golang.org/x/sync v0.13.0 // indirect
@@ -207,20 +212,20 @@ require (
207212
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
208213
google.golang.org/api v0.226.0 // indirect
209214
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
210-
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
215+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
211216
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
212-
google.golang.org/grpc v1.71.1 // indirect
217+
google.golang.org/grpc v1.72.1 // indirect
213218
google.golang.org/protobuf v1.36.6 // indirect
214219
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
215220
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
216221
gopkg.in/inf.v0 v0.9.1 // indirect
217222
gopkg.in/warnings.v0 v0.1.2 // indirect
218223
gopkg.in/yaml.v2 v2.4.0 // indirect
219-
k8s.io/apiserver v0.33.4 // indirect
224+
k8s.io/apiserver v0.34.1 // indirect
220225
k8s.io/cli-runtime v0.31.0 // indirect
221-
k8s.io/component-base v0.33.4 // indirect
226+
k8s.io/component-base v0.34.1 // indirect
222227
k8s.io/klog/v2 v2.130.1 // indirect
223-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
228+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
224229
k8s.io/kubectl v0.31.0 // indirect
225230
knative.dev/networking v0.0.0-20250117155906-67d1c274ba6a // indirect
226231
knative.dev/serving v0.44.0 // indirect
@@ -231,5 +236,5 @@ require (
231236
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
232237
sigs.k8s.io/node-feature-discovery v0.15.4 // indirect
233238
sigs.k8s.io/randfill v1.0.0 // indirect
234-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
239+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
235240
)

0 commit comments

Comments
 (0)