Skip to content

Commit 9d0ca9f

Browse files
[main] Upgrade to latest dependencies (#1699)
* upgrade to latest dependencies Signed-off-by: Knative Automation <automation@knative.team> * bump kind/k8s version --------- Signed-off-by: Knative Automation <automation@knative.team> Co-authored-by: Dave Protasowski <dprotaso@gmail.com>
1 parent 31fb899 commit 9d0ca9f

File tree

230 files changed

+20797
-1984
lines changed

Some content is hidden

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

230 files changed

+20797
-1984
lines changed

.github/workflows/kind-conformance.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
fail-fast: false # Keep running if one leg fails.
1919
matrix:
2020
k8s-version:
21-
- v1.33.1
21+
- v1.34.3
2222

2323
# Map between K8s and KinD versions.
2424
# This is attempting to make it a bit clearer what's being tested.
2525
# See: https://github.com/kubernetes-sigs/kind/releases/tag/v0.17.0
2626
include:
27-
- k8s-version: v1.33.1
28-
kind-image-sha: sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f
27+
- k8s-version: v1.34.3
28+
kind-image-sha: sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48
2929

3030
steps:
3131
- name: Defaults

.github/workflows/kind-e2e.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ jobs:
1414
fail-fast: false # Keep running if one leg fails.
1515
matrix:
1616
k8s-version:
17-
- v1.33.1
17+
- v1.34.3
1818
knative-version:
19-
- 1.18.0
19+
- 1.21.1
2020

2121
# Map between K8s and KinD versions.
2222
# This is attempting to make it a bit clearer what's being tested.
2323
# See: https://github.com/kubernetes-sigs/kind/releases/tag/v0.16.0
2424
include:
25-
- k8s-version: v1.33.1
26-
kind-version: v0.29.0
27-
kind-image-sha: sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f
25+
- k8s-version: v1.34.3
26+
kind-image-sha: sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48
2827
use-eventing-latest: ""
29-
knative-version: 1.18.0
28+
knative-version: 1.21.1
3029

3130
steps:
3231
- name: Defaults

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ releases-ko:
100100
$(OPEN) $(KO_RELEASES)
101101

102102
KIND_RELEASES := https://github.com/kubernetes-sigs/kind/releases
103-
KIND_VERSION := 0.20.0
103+
KIND_VERSION := 0.31.0
104104
KIND_URL := $(KIND_RELEASES)/download/v$(KIND_VERSION)/kind-$(platform)-$(arch_alt)
105105
KIND := $(LOCAL_BIN)/kind_$(KIND_VERSION)_$(platform)_$(arch_alt)
106106
$(KIND): | $(CURL) $(LOCAL_BIN)
@@ -136,7 +136,7 @@ releases-envsubst:
136136

137137
KUBECTL_RELEASES := https://github.com/kubernetes/kubernetes/tags
138138
# Keep this in sync with KIND_K8S_VERSION
139-
KUBECTL_VERSION := v1.33.1
139+
KUBECTL_VERSION := v1.34.3
140140
KUBECTL_BIN := kubectl-$(KUBECTL_VERSION)-$(platform)-$(arch_alt)
141141
KUBECTL_URL := https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/$(platform)/amd64/kubectl
142142
KUBECTL := $(LOCAL_BIN)/$(KUBECTL_BIN)

go.mod

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@ require (
1414
github.com/rabbitmq/messaging-topology-operator v1.12.0
1515
go.opencensus.io v0.24.0 // indirect
1616
go.uber.org/zap v1.27.1
17-
k8s.io/api v0.35.1
18-
k8s.io/apiextensions-apiserver v0.35.1
19-
k8s.io/apimachinery v0.35.1
20-
k8s.io/client-go v0.35.1
21-
k8s.io/code-generator v0.35.1
17+
k8s.io/api v0.35.2
18+
k8s.io/apiextensions-apiserver v0.35.2
19+
k8s.io/apimachinery v0.35.2
20+
k8s.io/client-go v0.35.2
21+
k8s.io/code-generator v0.35.2
2222
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912
23-
knative.dev/eventing v0.48.1-0.20260216121903-d3feb16882a1
24-
knative.dev/hack v0.0.0-20260212092700-0126b283bf20
25-
knative.dev/pkg v0.0.0-20260217153756-998c038ce69d
26-
knative.dev/reconciler-test v0.0.0-20260219013957-8e7a43df48d7
23+
knative.dev/eventing v0.48.1-0.20260318123800-cb8edb94867e
24+
knative.dev/hack v0.0.0-20260318014029-7eede7fdcbad
25+
knative.dev/pkg v0.0.0-20260318013857-98d5a706d4fd
26+
knative.dev/reconciler-test v0.0.0-20260318133702-158b98a68b18
2727
sigs.k8s.io/controller-runtime v0.19.0
2828
)
2929

3030
require (
3131
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.16.1
3232
github.com/rickb777/date v1.13.0
33-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0
34-
go.opentelemetry.io/contrib/instrumentation/runtime v0.64.0
35-
go.opentelemetry.io/otel v1.39.0
36-
go.opentelemetry.io/otel/metric v1.39.0
37-
go.opentelemetry.io/otel/sdk v1.39.0
38-
go.opentelemetry.io/otel/sdk/metric v1.39.0
39-
go.opentelemetry.io/otel/trace v1.39.0
33+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0
34+
go.opentelemetry.io/contrib/instrumentation/runtime v0.67.0
35+
go.opentelemetry.io/otel v1.42.0
36+
go.opentelemetry.io/otel/metric v1.42.0
37+
go.opentelemetry.io/otel/sdk v1.42.0
38+
go.opentelemetry.io/otel/sdk/metric v1.42.0
39+
go.opentelemetry.io/otel/trace v1.42.0
4040
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
4141
)
4242

@@ -68,7 +68,7 @@ require (
6868
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6969
github.com/google/gnostic-models v0.7.0 // indirect
7070
github.com/google/uuid v1.6.0 // indirect
71-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
71+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
7272
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
7373
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
7474
github.com/hashicorp/golang-lru v1.0.2 // indirect
@@ -81,7 +81,7 @@ require (
8181
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8282
github.com/prometheus/client_golang v1.23.2 // indirect
8383
github.com/prometheus/client_model v0.6.2 // indirect
84-
github.com/prometheus/common v0.67.4 // indirect
84+
github.com/prometheus/common v0.67.5 // indirect
8585
github.com/prometheus/otlptranslator v1.0.0 // indirect
8686
github.com/prometheus/procfs v0.19.2 // indirect
8787
github.com/rickb777/plural v1.2.1 // indirect
@@ -92,40 +92,40 @@ require (
9292
github.com/valyala/bytebufferpool v1.0.0 // indirect
9393
github.com/x448/float16 v0.8.4 // indirect
9494
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
95-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.39.0 // indirect
96-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.39.0 // indirect
97-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
98-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 // indirect
99-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0 // indirect
100-
go.opentelemetry.io/otel/exporters/prometheus v0.61.0 // indirect
101-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.39.0 // indirect
95+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.42.0 // indirect
96+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.42.0 // indirect
97+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0 // indirect
98+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.42.0 // indirect
99+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0 // indirect
100+
go.opentelemetry.io/otel/exporters/prometheus v0.64.0 // indirect
101+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.42.0 // indirect
102102
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
103103
go.uber.org/atomic v1.10.0 // indirect
104104
go.uber.org/automaxprocs v1.6.0 // indirect
105105
go.uber.org/multierr v1.11.0 // indirect
106106
go.yaml.in/yaml/v2 v2.4.3 // indirect
107107
go.yaml.in/yaml/v3 v3.0.4 // indirect
108-
golang.org/x/crypto v0.48.0 // indirect
108+
golang.org/x/crypto v0.49.0 // indirect
109109
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
110-
golang.org/x/mod v0.33.0 // indirect
111-
golang.org/x/net v0.50.0 // indirect
112-
golang.org/x/oauth2 v0.32.0 // indirect
113-
golang.org/x/sync v0.19.0 // indirect
114-
golang.org/x/sys v0.41.0 // indirect
115-
golang.org/x/term v0.40.0 // indirect
116-
golang.org/x/text v0.34.0 // indirect
110+
golang.org/x/mod v0.34.0 // indirect
111+
golang.org/x/net v0.52.0 // indirect
112+
golang.org/x/oauth2 v0.35.0 // indirect
113+
golang.org/x/sync v0.20.0 // indirect
114+
golang.org/x/sys v0.42.0 // indirect
115+
golang.org/x/term v0.41.0 // indirect
116+
golang.org/x/text v0.35.0 // indirect
117117
golang.org/x/time v0.12.0 // indirect
118-
golang.org/x/tools v0.42.0 // indirect
118+
golang.org/x/tools v0.43.0 // indirect
119119
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
120-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
121-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
122-
google.golang.org/grpc v1.77.0 // indirect
123-
google.golang.org/protobuf v1.36.10 // indirect
120+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 // indirect
121+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
122+
google.golang.org/grpc v1.79.2 // indirect
123+
google.golang.org/protobuf v1.36.11 // indirect
124124
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
125125
gopkg.in/inf.v0 v0.9.1 // indirect
126126
gopkg.in/yaml.v2 v2.4.0 // indirect
127127
gopkg.in/yaml.v3 v3.0.1 // indirect
128-
k8s.io/apiserver v0.35.1 // indirect
128+
k8s.io/apiserver v0.35.2 // indirect
129129
k8s.io/gengo/v2 v2.0.0-20250922181213-ec3ebc5fd46b // indirect
130130
k8s.io/klog/v2 v2.130.1 // indirect
131131
sigs.k8s.io/gateway-api v1.1.0 // indirect

0 commit comments

Comments
 (0)