Skip to content

Commit 1e4846f

Browse files
fix(deps): update all non-major dependencies (#190)
1 parent a4294e5 commit 1e4846f

Some content is hidden

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

70 files changed

+559
-851
lines changed

.golangci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ linters:
8181
- linters:
8282
- goconst
8383
path: (.+)_test\.go
84+
- linters:
85+
- unused
86+
path: tests/e2e/
87+
- linters:
88+
- goheader
89+
path: third_party/
8490
paths:
8591
- third_party$
8692
- builtin$

Makefile

Lines changed: 89 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,23 @@ MOCKGEN_VERSION := 0.6.0 # renovate: datasource=github-releases depName=uber-go/
2929

3030
GOPROXY=https://proxy.golang.org
3131

32+
# Directories to run golangci-lint in
33+
LINT_DIRS := . api properties tests/e2e \
34+
third_party/github.com/banzaicloud/operator-tools \
35+
third_party/github.com/banzaicloud/k8s-objectmatcher \
36+
third_party/github.com/banzaicloud/go-cruise-control
37+
38+
# Directories to run licensei check/cache in
39+
LICENSE_CHECK_DIRS := . \
40+
third_party/github.com/banzaicloud/operator-tools \
41+
third_party/github.com/banzaicloud/k8s-objectmatcher \
42+
third_party/github.com/banzaicloud/go-cruise-control
43+
44+
# Directories to run licensei header in
45+
LICENSE_HEADER_DIRS := \
46+
third_party/github.com/banzaicloud/k8s-objectmatcher \
47+
third_party/github.com/banzaicloud/go-cruise-control
48+
3249
# Use BIN_DIR to form an absolute, stable path regardless of `cd` usage
3350
CONTROLLER_GEN = $(BIN_DIR)/controller-gen
3451

@@ -62,6 +79,16 @@ clean: ## Clean build artifacts and test binaries
6279
fi
6380
@rm -f cover.out
6481
@rm -f manager_image_patch.yaml
82+
@echo "Cleaning third_party/github.com/banzaicloud/operator-tools..."
83+
@if [ -d "third_party/github.com/banzaicloud/operator-tools/bin" ]; then \
84+
chmod -R u+w third_party/github.com/banzaicloud/operator-tools/bin/ 2>/dev/null || true; \
85+
rm -rf third_party/github.com/banzaicloud/operator-tools/bin/; \
86+
fi
87+
@echo "Cleaning third_party/github.com/banzaicloud/k8s-objectmatcher..."
88+
@if [ -d "third_party/github.com/banzaicloud/k8s-objectmatcher/bin" ]; then \
89+
chmod -R u+w third_party/github.com/banzaicloud/k8s-objectmatcher/bin/ 2>/dev/null || true; \
90+
rm -rf third_party/github.com/banzaicloud/k8s-objectmatcher/bin/; \
91+
fi
6592

6693
bin/golangci-lint: bin/golangci-lint-${GOLANGCI_VERSION} ## Symlink golangi-lint-<version> into versionless golangci-lint.
6794
@ln -sf golangci-lint-${GOLANGCI_VERSION} bin/golangci-lint
@@ -72,14 +99,22 @@ bin/golangci-lint-${GOLANGCI_VERSION}: ## Download versioned golangci-lint.
7299

73100
.PHONY: lint
74101
lint: bin/golangci-lint ## Run linter analysis.
75-
bin/golangci-lint run -c ./.golangci.yml --timeout=5m
76-
cd api && ../bin/golangci-lint run -c ../.golangci.yml --timeout=5m
77-
cd properties && ../bin/golangci-lint run -c ../.golangci.yml --timeout=5m
78-
cd tests/e2e && ../../bin/golangci-lint run -c .golangci.yml --timeout=5m
102+
@for dir in $(LINT_DIRS); do \
103+
echo "Running lint in $$dir"; \
104+
(cd $$dir && $(CURDIR)/bin/golangci-lint run -c $(CURDIR)/.golangci.yml --timeout=5m) || exit 1; \
105+
done
106+
107+
.PHONY: lint-fix
108+
lint-fix: bin/golangci-lint ## Run linter with automatic fixes.
109+
@for dir in $(LINT_DIRS); do \
110+
echo "Running lint-fix in $$dir"; \
111+
(cd $$dir && $(CURDIR)/bin/golangci-lint run -c $(CURDIR)/.golangci.yml --fix --timeout=5m) || exit 1; \
112+
done
79113

80-
.PHONY: lint-fix ## Run linter with automatic fixes.
81-
lint-fix: bin/golangci-lint ## Run linter
82-
@bin/golangci-lint run -v --fix
114+
.PHONY: lint-clean
115+
lint-clean: bin/golangci-lint ## Clean linter cache.
116+
@echo "Cleaning golangci-lint cache..."
117+
bin/golangci-lint cache clean
83118

84119
bin/licensei: bin/licensei-${LICENSEI_VERSION} ## Symlink licensei-<version> into versionless licensei.
85120
@ln -sf licensei-${LICENSEI_VERSION} bin/licensei
@@ -90,11 +125,24 @@ bin/licensei-${LICENSEI_VERSION}: ## Download versioned licensei.
90125

91126
.PHONY: license-check
92127
license-check: bin/licensei ## Run license check.
93-
bin/licensei check
128+
@for dir in $(LICENSE_CHECK_DIRS); do \
129+
echo "Running license check in $$dir..."; \
130+
(cd $$dir && $(CURDIR)/bin/licensei check) || exit 1; \
131+
done
94132

95133
.PHONY: license-cache
96134
license-cache: bin/licensei ## Generate license cache.
97-
bin/licensei cache
135+
@for dir in $(LICENSE_CHECK_DIRS); do \
136+
echo "Generating license cache in $$dir..."; \
137+
(cd $$dir && $(CURDIR)/bin/licensei cache) || exit 1; \
138+
done
139+
140+
.PHONY: license
141+
license: bin/licensei ## Add license headers to source files.
142+
@for dir in $(LICENSE_HEADER_DIRS); do \
143+
echo "Adding license headers in $$dir..."; \
144+
(cd $$dir && $(CURDIR)/bin/licensei header) || exit 1; \
145+
done
98146

99147
install-kustomize: ## Install kustomize.
100148
@ if ! which bin/kustomize &>/dev/null; then\
@@ -113,6 +161,15 @@ test: generate fmt vet bin/setup-envtest
113161
-test.paniconexit0 \
114162
-timeout 1h
115163
cd properties && go test -coverprofile cover.out -cover -failfast -v -covermode=count ./pkg/... ./internal/...
164+
@echo "Running tests in third_party/github.com/banzaicloud/operator-tools..."
165+
cd third_party/github.com/banzaicloud/operator-tools && \
166+
KUBEBUILDER_ASSETS=$$($(BIN_DIR)/setup-envtest --print path --bin-dir $(BIN_DIR) use $(ENVTEST_K8S_VERSION)) \
167+
go test ./... -v -failfast
168+
@echo "Running tests in third_party/github.com/banzaicloud/k8s-objectmatcher..."
169+
cd third_party/github.com/banzaicloud/k8s-objectmatcher && go test ./...
170+
@echo "Running tests in third_party/github.com/banzaicloud/go-cruise-control..."
171+
cd third_party/github.com/banzaicloud/go-cruise-control && \
172+
go test -v -parallel 2 -failfast ./... -cover -covermode=count -coverprofile cover.out -test.v -test.paniconexit0
116173

117174
# Run e2e tests
118175
test-e2e:
@@ -158,15 +215,38 @@ fmt: ## Run go fmt against code.
158215
cd api && go fmt ./...
159216
cd properties && go fmt ./...
160217
cd tests/e2e && go fmt ./...
218+
@echo "Running fmt in third_party/github.com/banzaicloud/k8s-objectmatcher..."
219+
cd third_party/github.com/banzaicloud/k8s-objectmatcher && go fmt ./...
220+
@echo "Running fmt in third_party/github.com/banzaicloud/go-cruise-control..."
221+
cd third_party/github.com/banzaicloud/go-cruise-control && go fmt ./...
161222

162223
vet: ## Run go vet against code.
163224
go vet ./...
164225
cd api && go fmt ./...
165226
cd properties && go vet ./...
166227
cd tests/e2e && go vet ./...
228+
@echo "Running vet in third_party/github.com/banzaicloud/k8s-objectmatcher..."
229+
cd third_party/github.com/banzaicloud/k8s-objectmatcher && go vet ./...
230+
@echo "Running vet in third_party/github.com/banzaicloud/go-cruise-control..."
231+
cd third_party/github.com/banzaicloud/go-cruise-control && go vet ./...
167232

168233
generate: bin/controller-gen gen-license-header ## Generate source code for APIs, Mocks, etc.
169234
cd api && $(CONTROLLER_GEN) object:headerFile=$(BOILERPLATE_DIR)/header.go.generated.txt paths="./..."
235+
@echo "Running generate in third_party/github.com/banzaicloud/operator-tools..."
236+
cd third_party/github.com/banzaicloud/operator-tools && \
237+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/secret/... && \
238+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/volume/... && \
239+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/prometheus/... && \
240+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/types/... && \
241+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/typeoverride/... && \
242+
$(CONTROLLER_GEN) object:headerFile=./hack/boilerplate.go.txt paths=./pkg/helm/...
243+
@echo "Generating type documentation for operator-tools..."
244+
cd third_party/github.com/banzaicloud/operator-tools && go run cmd/docs.go
245+
246+
.PHONY: check-diff
247+
check-diff: generate ## Check for uncommitted changes
248+
@echo "Checking for uncommitted changes ..."
249+
git diff --exit-code
170250

171251
docker-build: ## Build the operator docker image.
172252
docker build . -t ${IMG}

api/go.mod

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,38 @@ require (
77
emperror.dev/errors v0.8.1
88
github.com/banzaicloud/istio-client-go v0.0.17
99
github.com/cert-manager/cert-manager v1.18.2
10-
golang.org/x/exp v0.0.0-20250911091902-df9299821621
11-
gotest.tools v2.2.0+incompatible
1210
k8s.io/api v0.34.1
1311
k8s.io/apimachinery v0.34.1
1412
sigs.k8s.io/controller-runtime v0.22.1
1513
)
1614

1715
require (
18-
// github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
16+
github.com/stretchr/testify v1.11.1
17+
gotest.tools v2.2.0+incompatible
18+
)
19+
20+
require (
21+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
1923
github.com/go-logr/logr v1.4.3 // indirect
2024
github.com/gogo/protobuf v1.3.2 // indirect
2125
github.com/google/go-cmp v0.7.0 // indirect
2226
github.com/json-iterator/go v1.1.12 // indirect
2327
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2428
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
2529
github.com/pkg/errors v0.9.1 // indirect
26-
// github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
30+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
31+
github.com/spf13/pflag v1.0.10 // indirect
32+
github.com/x448/float16 v0.8.4 // indirect
2733
go.uber.org/multierr v1.11.0 // indirect
34+
go.yaml.in/yaml/v2 v2.4.3 // indirect
2835
golang.org/x/net v0.44.0 // indirect
2936
golang.org/x/text v0.29.0 // indirect
3037
gopkg.in/inf.v0 v0.9.1 // indirect
31-
// gopkg.in/yaml.v3 v3.0.1 // indirect
38+
gopkg.in/yaml.v3 v3.0.1 // indirect
3239
k8s.io/klog/v2 v2.130.1 // indirect
33-
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d // indirect
40+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
3441
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
35-
)
36-
37-
require github.com/stretchr/testify v1.11.1
38-
39-
require (
40-
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
41-
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
42-
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
43-
github.com/spf13/pflag v1.0.10 // indirect
44-
github.com/x448/float16 v0.8.4 // indirect
45-
go.yaml.in/yaml/v2 v2.4.3 // indirect
46-
gopkg.in/yaml.v3 v3.0.1 // indirect
4742
sigs.k8s.io/randfill v1.0.0 // indirect
4843
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
4944
)

api/go.sum

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8=
7676
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
7777
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
7878
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
79-
golang.org/x/exp v0.0.0-20250911091902-df9299821621 h1:2id6c1/gto0kaHYyrixvknJ8tUK/Qs5IsmBtrc+FtgU=
80-
golang.org/x/exp v0.0.0-20250911091902-df9299821621/go.mod h1:TwQYMMnGpvZyc+JpB/UAuTNIsVJifOlSkrZkhcvpVUk=
8179
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
8280
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
8381
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
@@ -105,8 +103,8 @@ golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGm
105103
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
106104
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
107105
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
108-
golang.org/x/tools v0.37.0 h1:DVSRzp7FwePZW356yEAChSdNcQo6Nsp+fex1SUW09lE=
109-
golang.org/x/tools v0.37.0/go.mod h1:MBN5QPQtLMHVdvsbtarmTNukZDdgwdwlO5qGacAzF0w=
106+
golang.org/x/tools v0.36.0 h1:kWS0uv/zsvHEle1LbV5LE8QujrxB3wfQyxHfhOk0Qkg=
107+
golang.org/x/tools v0.36.0/go.mod h1:WBDiHKJK8YgLHlcQPYQzNCkUxUypCaa5ZegCVutKm+s=
110108
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
111109
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
112110
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
@@ -130,8 +128,8 @@ k8s.io/apimachinery v0.34.1/go.mod h1:/GwIlEcWuTX9zKIg2mbw0LRFIsXwrfoVxn+ef0X13l
130128
k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I=
131129
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
132130
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
133-
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d h1:wAhiDyZ4Tdtt7e46e9M5ZSAJ/MnPGPs+Ki1gHw4w1R0=
134-
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
131+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 h1:SjGebBtkBqHFOli+05xYbK8YF1Dzkbzn+gDM4X9T4Ck=
132+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
135133
sigs.k8s.io/controller-runtime v0.22.1 h1:Ah1T7I+0A7ize291nJZdS1CabF/lB4E++WizgV24Eqg=
136134
sigs.k8s.io/controller-runtime v0.22.1/go.mod h1:FwiwRjkRPbiN+zp2QRp7wlTCzbUXxZ/D4OzuQUDwBHY=
137135
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 h1:IpInykpT6ceI+QxKBbEflcR5EXP7sU1kvOlxwZh5txg=

api/v1alpha1/kafkauserspec_annotations.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ package v1alpha1
1616

1717
import (
1818
"fmt"
19+
"maps"
1920
"time"
2021

2122
"emperror.dev/errors"
22-
"golang.org/x/exp/maps"
2323
)
2424

2525
// annotationsWithValidations is a map whose keys are KafkaUserSpec annotation keys, and values are validators

go.mod

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ require (
1818
github.com/envoyproxy/go-control-plane v0.13.4
1919
github.com/envoyproxy/go-control-plane/envoy v1.35.0
2020
github.com/go-logr/logr v1.4.3
21-
github.com/onsi/ginkgo/v2 v2.25.3
21+
github.com/onsi/ginkgo/v2 v2.26.0
2222
github.com/onsi/gomega v1.38.2
2323
github.com/pavlo-v-chernykh/keystore-go/v4 v4.5.0
2424
github.com/projectcontour/contour v1.33.0
2525
github.com/prometheus/common v0.66.1
2626
github.com/stretchr/testify v1.11.1
2727
go.uber.org/mock v0.6.0
2828
go.uber.org/zap v1.27.0
29-
golang.org/x/exp v0.0.0-20250911091902-df9299821621
29+
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9
3030
google.golang.org/protobuf v1.36.10
3131
gopkg.in/inf.v0 v0.9.1
3232
gotest.tools v2.2.0+incompatible
@@ -55,18 +55,18 @@ require (
5555
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5656
github.com/google/btree v1.1.3 // indirect
5757
github.com/google/gnostic-models v0.7.0 // indirect
58-
github.com/google/pprof v0.0.0-20250923004556-9e5a51aed1e8 // indirect
59-
github.com/onsi/ginkgo v1.16.5 // indirect
58+
github.com/google/pprof v0.0.0-20251002213607-436353cc1ee6 // indirect
6059
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
6160
github.com/stretchr/objx v0.5.2 // indirect
6261
github.com/x448/float16 v0.8.4 // indirect
6362
go.uber.org/automaxprocs v1.6.0 // indirect
6463
go.yaml.in/yaml/v2 v2.4.3 // indirect
6564
go.yaml.in/yaml/v3 v3.0.4 // indirect
65+
golang.org/x/mod v0.28.0 // indirect
6666
golang.org/x/sync v0.17.0 // indirect
6767
golang.org/x/tools v0.37.0 // indirect
68-
google.golang.org/genproto/googleapis/api v0.0.0-20250929231259-57b25ae835d4 // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250929231259-57b25ae835d4 // indirect
68+
google.golang.org/genproto/googleapis/api v0.0.0-20251002232023-7c0ddcbb5797 // indirect
69+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251002232023-7c0ddcbb5797 // indirect
7070
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7171
sigs.k8s.io/randfill v1.0.0 // indirect
7272
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
@@ -80,7 +80,6 @@ require (
8080
github.com/briandowns/spinner v1.23.2 // indirect
8181
github.com/cespare/xxhash/v2 v2.3.0 // indirect
8282
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
83-
github.com/cppforlife/go-patch v0.2.0 // indirect
8483
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
8584
github.com/eapache/go-resiliency v1.7.0 // indirect
8685
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
@@ -126,7 +125,7 @@ require (
126125
github.com/shopspring/decimal v1.4.0 // indirect
127126
github.com/spf13/cast v1.10.0 // indirect
128127
github.com/spf13/pflag v1.0.10 // indirect
129-
github.com/tidwall/gjson v1.14.4 // indirect
128+
github.com/tidwall/gjson v1.18.0 // indirect
130129
github.com/tidwall/match v1.1.1 // indirect
131130
github.com/tidwall/pretty v1.2.1 // indirect
132131
github.com/wayneashleyberry/terminal-dimensions v1.1.0 // indirect
@@ -139,12 +138,11 @@ require (
139138
golang.org/x/text v0.29.0 // indirect
140139
golang.org/x/time v0.13.0 // indirect
141140
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
142-
gopkg.in/yaml.v2 v2.4.0 // indirect
143141
gopkg.in/yaml.v3 v3.0.1 // indirect
144142
istio.io/api v1.27.1 // indirect
145143
k8s.io/klog/v2 v2.130.1 // indirect
146144
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
147-
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d // indirect
145+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
148146
sigs.k8s.io/gateway-api v1.3.0 // indirect
149147
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
150148
sigs.k8s.io/yaml v1.6.0

0 commit comments

Comments
 (0)