Skip to content

Commit e0d1f84

Browse files
authored
Merge pull request #2137 from kube-logging/renovate/all
2 parents d7a1392 + 7ff4c18 commit e0d1f84

File tree

21 files changed

+252
-199
lines changed

21 files changed

+252
-199
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: make generate-test-coverage
3232

3333
- name: Test Coverage
34-
uses: vladopajic/go-test-coverage@d35073ff1b8c1a0c4e9b8e03e8617e5dc64c5006 # v2.17.1
34+
uses: vladopajic/go-test-coverage@d9ec07b8799c458a7bc1f9b36d14261746d63529 # v2.18.0
3535
with:
3636
config: ./.testcoverage.yml
3737
source-dir: ./

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
KUBECTL_VERSION: 'v1.33.0'
11+
KUBECTL_VERSION: 'v1.34.0'
1212

1313
jobs:
1414
build:
@@ -137,7 +137,7 @@ jobs:
137137
# SHARDS: ${{ matrix.SHARDS }}
138138

139139
- name: Run coverage report
140-
uses: vladopajic/go-test-coverage@d35073ff1b8c1a0c4e9b8e03e8617e5dc64c5006 # v2.17.1
140+
uses: vladopajic/go-test-coverage@d9ec07b8799c458a7bc1f9b36d14261746d63529 # v2.18.0
141141
with:
142142
profile: ./build/_test_coverage/coverage_e2e.out
143143
source-dir: ./

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
CONTROLLER_GEN_VERSION := 0.19.0
99

1010
# renovate: datasource=github-releases depName=golangci/golangci-lint versioning=semver
11-
GOLANGCI_LINT_VERSION := 2.6.1
11+
GOLANGCI_LINT_VERSION := 2.6.2
1212

1313
# renovate: datasource=go depName=github.com/vladopajic/go-test-coverage/v2 versioning=semver
14-
GO_TEST_COVERAGE_VERSION := 2.17.1
14+
GO_TEST_COVERAGE_VERSION := 2.18.0
1515

1616
# renovate: datasource=github-releases depName=norwoodj/helm-docs versioning=semver
1717
HELM_DOCS_VERSION = 1.14.2
@@ -20,7 +20,7 @@ HELM_DOCS_VERSION = 1.14.2
2020
KIND_VERSION ?= 0.30.0
2121

2222
# renovate: datasource=github-releases depName=kubernetes-sigs/kubebuilder versioning=semver
23-
KUBEBUILDER_VERSION = 4.9.0
23+
KUBEBUILDER_VERSION = 4.10.1
2424

2525
# renovate: datasource=go depName=github.com/goph/licensei versioning=semver
2626
LICENSEI_VERSION = 0.9.0

charts/logging-operator/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 0.0.0
55
- name: telemetry-controller
66
repository: oci://ghcr.io/kube-logging/helm-charts
7-
version: 0.2.0
8-
digest: sha256:aaa0c4e24a554d6b07203ee01c3f5e2d7e354ede8929a599a7c9ef99d472d901
9-
generated: "2025-10-08T11:06:01.904172+02:00"
7+
version: 0.3.0
8+
digest: sha256:de40e8035f2289f5fdf77e27c3af64523096daec2ecee9e4a6946f0dc64f5345
9+
generated: "2025-11-24T15:45:09.062069+01:00"

e2e/go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ require (
66
emperror.dev/errors v0.8.1
77
github.com/MakeNowJust/heredoc v1.0.0
88
github.com/cisco-open/operator-tools v0.37.0
9-
github.com/kube-logging/logging-operator v0.0.0-20251017135456-daed40d20c26
9+
github.com/kube-logging/logging-operator v0.0.0-20251124081214-2fa599738772
1010
github.com/kube-logging/logging-operator/pkg/sdk v0.12.0
11-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.1
11+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.87.0
1212
github.com/spf13/cast v1.10.0
1313
github.com/stretchr/testify v1.11.1
1414
helm.sh/helm/v3 v3.19.0
15-
k8s.io/api v0.34.1
16-
k8s.io/apiextensions-apiserver v0.34.1
17-
k8s.io/apimachinery v0.34.1
18-
k8s.io/client-go v0.34.1
15+
k8s.io/api v0.34.2
16+
k8s.io/apiextensions-apiserver v0.34.2
17+
k8s.io/apimachinery v0.34.2
18+
k8s.io/client-go v0.34.2
1919
sigs.k8s.io/controller-runtime v0.22.4
2020
sigs.k8s.io/e2e-framework v0.6.0
2121
)
@@ -113,7 +113,7 @@ require (
113113
github.com/x448/float16 v0.8.4 // indirect
114114
github.com/xlab/treeprint v1.2.0 // indirect
115115
go.uber.org/multierr v1.11.0 // indirect
116-
go.uber.org/zap v1.27.0 // indirect
116+
go.uber.org/zap v1.27.1 // indirect
117117
go.yaml.in/yaml/v2 v2.4.3 // indirect
118118
go.yaml.in/yaml/v3 v3.0.4 // indirect
119119
golang.org/x/crypto v0.45.0 // indirect
@@ -132,9 +132,9 @@ require (
132132
gopkg.in/inf.v0 v0.9.1 // indirect
133133
gopkg.in/yaml.v2 v2.4.0 // indirect
134134
gopkg.in/yaml.v3 v3.0.1 // indirect
135-
k8s.io/apiserver v0.34.1 // indirect
135+
k8s.io/apiserver v0.34.2 // indirect
136136
k8s.io/cli-runtime v0.34.0 // indirect
137-
k8s.io/component-base v0.34.1 // indirect
137+
k8s.io/component-base v0.34.2 // indirect
138138
k8s.io/klog/v2 v2.130.1 // indirect
139139
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
140140
k8s.io/kubectl v0.34.0 // indirect

e2e/go.sum

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
185185
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
186186
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
187187
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
188-
github.com/kube-logging/logging-operator v0.0.0-20251017135456-daed40d20c26 h1:ks4dJwilJpTcWEIeKOIuHZmYbchiU5r+FGAGKjZuJIE=
189-
github.com/kube-logging/logging-operator v0.0.0-20251017135456-daed40d20c26/go.mod h1:APV21ZpmYu3HS7dy6PlkS/d55QtvbkqIBh7tCFSMasw=
188+
github.com/kube-logging/logging-operator v0.0.0-20251124081214-2fa599738772 h1:ZvAw2fZIz3DhsUObVCIzLads1gFemQO/dx8oG2EE1NE=
189+
github.com/kube-logging/logging-operator v0.0.0-20251124081214-2fa599738772/go.mod h1:XtN4o6p+outEKAUlDrsVPlT5kiJ56rHblGi0K6TxCA8=
190190
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
191191
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
192192
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 h1:SOEGU9fKiNWd/HOJuq6+3iTQz8KNCLtVX6idSoTLdUw=
@@ -256,8 +256,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI
256256
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
257257
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
258258
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
259-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.1 h1:j/GvU9UxlK5nuUKOWYOY0LRqcfHZl1ffTOa46+00Cys=
260-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.1/go.mod h1:nPk0OteXBkbT0CRCa2oZQL1jRLW6RJ2fuIijHypeJdk=
259+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.87.0 h1:QK37j5ZUtBwbyZkF4BBAs3bQQ1gYKG8e+g1BdNZBr/M=
260+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.87.0/go.mod h1:WHiLZmOWVop/MoYvRD58LfnPeyE+dcITby/jQjg83Hw=
261261
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
262262
github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg=
263263
github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk=
@@ -365,8 +365,8 @@ go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
365365
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
366366
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
367367
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
368-
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
369-
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
368+
go.uber.org/zap v1.27.1 h1:08RqriUEv8+ArZRYSTXy1LeBScaMpVSTBhCeaZYfMYc=
369+
go.uber.org/zap v1.27.1/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
370370
go.yaml.in/yaml/v2 v2.4.3 h1:6gvOSjQoTB3vt1l+CU+tSyi/HOjfOjRLJ4YwYZGwRO0=
371371
go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8=
372372
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
@@ -446,20 +446,20 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
446446
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
447447
helm.sh/helm/v3 v3.19.0 h1:krVyCGa8fa/wzTZgqw0DUiXuRT5BPdeqE/sQXujQ22k=
448448
helm.sh/helm/v3 v3.19.0/go.mod h1:Lk/SfzN0w3a3C3o+TdAKrLwJ0wcZ//t1/SDXAvfgDdc=
449-
k8s.io/api v0.34.1 h1:jC+153630BMdlFukegoEL8E/yT7aLyQkIVuwhmwDgJM=
450-
k8s.io/api v0.34.1/go.mod h1:SB80FxFtXn5/gwzCoN6QCtPD7Vbu5w2n1S0J5gFfTYk=
451-
k8s.io/apiextensions-apiserver v0.34.1 h1:NNPBva8FNAPt1iSVwIE0FsdrVriRXMsaWFMqJbII2CI=
452-
k8s.io/apiextensions-apiserver v0.34.1/go.mod h1:hP9Rld3zF5Ay2Of3BeEpLAToP+l4s5UlxiHfqRaRcMc=
453-
k8s.io/apimachinery v0.34.1 h1:dTlxFls/eikpJxmAC7MVE8oOeP1zryV7iRyIjB0gky4=
454-
k8s.io/apimachinery v0.34.1/go.mod h1:/GwIlEcWuTX9zKIg2mbw0LRFIsXwrfoVxn+ef0X13lw=
455-
k8s.io/apiserver v0.34.1 h1:U3JBGdgANK3dfFcyknWde1G6X1F4bg7PXuvlqt8lITA=
456-
k8s.io/apiserver v0.34.1/go.mod h1:eOOc9nrVqlBI1AFCvVzsob0OxtPZUCPiUJL45JOTBG0=
449+
k8s.io/api v0.34.2 h1:fsSUNZhV+bnL6Aqrp6O7lMTy6o5x2C4XLjnh//8SLYY=
450+
k8s.io/api v0.34.2/go.mod h1:MMBPaWlED2a8w4RSeanD76f7opUoypY8TFYkSM+3XHw=
451+
k8s.io/apiextensions-apiserver v0.34.2 h1:WStKftnGeoKP4AZRz/BaAAEJvYp4mlZGN0UCv+uvsqo=
452+
k8s.io/apiextensions-apiserver v0.34.2/go.mod h1:398CJrsgXF1wytdaanynDpJ67zG4Xq7yj91GrmYN2SE=
453+
k8s.io/apimachinery v0.34.2 h1:zQ12Uk3eMHPxrsbUJgNF8bTauTVR2WgqJsTmwTE/NW4=
454+
k8s.io/apimachinery v0.34.2/go.mod h1:/GwIlEcWuTX9zKIg2mbw0LRFIsXwrfoVxn+ef0X13lw=
455+
k8s.io/apiserver v0.34.2 h1:2/yu8suwkmES7IzwlehAovo8dDE07cFRC7KMDb1+MAE=
456+
k8s.io/apiserver v0.34.2/go.mod h1:gqJQy2yDOB50R3JUReHSFr+cwJnL8G1dzTA0YLEqAPI=
457457
k8s.io/cli-runtime v0.34.0 h1:N2/rUlJg6TMEBgtQ3SDRJwa8XyKUizwjlOknT1mB2Cw=
458458
k8s.io/cli-runtime v0.34.0/go.mod h1:t/skRecS73Piv+J+FmWIQA2N2/rDjdYSQzEE67LUUs8=
459-
k8s.io/client-go v0.34.1 h1:ZUPJKgXsnKwVwmKKdPfw4tB58+7/Ik3CrjOEhsiZ7mY=
460-
k8s.io/client-go v0.34.1/go.mod h1:kA8v0FP+tk6sZA0yKLRG67LWjqufAoSHA2xVGKw9Of8=
461-
k8s.io/component-base v0.34.1 h1:v7xFgG+ONhytZNFpIz5/kecwD+sUhVE6HU7qQUiRM4A=
462-
k8s.io/component-base v0.34.1/go.mod h1:mknCpLlTSKHzAQJJnnHVKqjxR7gBeHRv0rPXA7gdtQ0=
459+
k8s.io/client-go v0.34.2 h1:Co6XiknN+uUZqiddlfAjT68184/37PS4QAzYvQvDR8M=
460+
k8s.io/client-go v0.34.2/go.mod h1:2VYDl1XXJsdcAxw7BenFslRQX28Dxz91U9MWKjX97fE=
461+
k8s.io/component-base v0.34.2 h1:HQRqK9x2sSAsd8+R4xxRirlTjowsg6fWCPwWYeSvogQ=
462+
k8s.io/component-base v0.34.2/go.mod h1:9xw2FHJavUHBFpiGkZoKuYZ5pdtLKe97DEByaA+hHbM=
463463
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
464464
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
465465
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b h1:MloQ9/bdJyIu9lb1PzujOPolHyvO06MXG5TUIj2mNAA=

go.mod

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ require (
1010
github.com/go-logr/logr v1.4.3
1111
github.com/kube-logging/logging-operator/pkg/sdk v0.12.0
1212
github.com/kube-logging/logging-operator/pkg/sdk/logging/model/syslogng/config v0.0.0
13-
github.com/kube-logging/telemetry-controller v0.0.0-20251027095309-4c477b2deab0
13+
github.com/kube-logging/telemetry-controller v0.0.0-20251124140111-2b4468f8df40
1414
github.com/onsi/ginkgo v1.16.5
1515
github.com/onsi/gomega v1.38.2
1616
github.com/pborman/uuid v1.2.1
17-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.1
17+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.87.0
1818
github.com/prometheus/client_golang v1.23.2
19-
github.com/siliconbrain/go-seqs v0.15.0
19+
github.com/siliconbrain/go-seqs v0.16.0
2020
github.com/spf13/cast v1.10.0
2121
github.com/stretchr/testify v1.11.1
2222
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9
23-
k8s.io/api v0.34.1
24-
k8s.io/apiextensions-apiserver v0.34.1
25-
k8s.io/apimachinery v0.34.1
26-
k8s.io/client-go v0.34.1
23+
k8s.io/api v0.34.2
24+
k8s.io/apiextensions-apiserver v0.34.2
25+
k8s.io/apimachinery v0.34.2
26+
k8s.io/client-go v0.34.2
2727
k8s.io/klog/v2 v2.130.1
2828
sigs.k8s.io/controller-runtime v0.22.4
2929
)
@@ -52,6 +52,8 @@ require (
5252
github.com/go-openapi/jsonpointer v0.21.1 // indirect
5353
github.com/go-openapi/jsonreference v0.21.0 // indirect
5454
github.com/go-openapi/swag v0.23.1 // indirect
55+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
56+
github.com/gobwas/glob v0.2.3 // indirect
5557
github.com/goccy/go-yaml v1.18.0 // indirect
5658
github.com/gogo/protobuf v1.3.2 // indirect
5759
github.com/google/btree v1.1.3 // indirect
@@ -65,19 +67,24 @@ require (
6567
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6668
github.com/josharian/intern v1.0.0 // indirect
6769
github.com/json-iterator/go v1.1.12 // indirect
70+
github.com/knadh/koanf/maps v0.1.2 // indirect
71+
github.com/knadh/koanf/providers/confmap v1.0.0 // indirect
72+
github.com/knadh/koanf/v2 v2.3.0 // indirect
6873
github.com/mailru/easyjson v0.9.0 // indirect
6974
github.com/mattn/go-colorable v0.1.14 // indirect
7075
github.com/mattn/go-isatty v0.0.20 // indirect
76+
github.com/mitchellh/copystructure v1.2.0 // indirect
7177
github.com/mitchellh/mapstructure v1.5.0 // indirect
78+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7279
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7380
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
7481
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
7582
github.com/nxadm/tail v1.4.11 // indirect
76-
github.com/open-telemetry/opentelemetry-operator v0.136.0 // indirect
83+
github.com/open-telemetry/opentelemetry-operator v0.140.0 // indirect
7784
github.com/pkg/errors v0.9.1 // indirect
7885
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7986
github.com/prometheus/client_model v0.6.2 // indirect
80-
github.com/prometheus/common v0.66.1 // indirect
87+
github.com/prometheus/common v0.67.1 // indirect
8188
github.com/prometheus/otlptranslator v0.0.2 // indirect
8289
github.com/prometheus/procfs v0.17.0 // indirect
8390
github.com/prometheus/prometheus v1.8.2-0.20210621150501-ff58416a0b02 // indirect
@@ -87,13 +94,13 @@ require (
8794
github.com/wayneashleyberry/terminal-dimensions v1.1.0 // indirect
8895
github.com/x448/float16 v0.8.4 // indirect
8996
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
90-
go.opentelemetry.io/collector/component v1.42.0 // indirect
91-
go.opentelemetry.io/collector/config/configcompression v1.42.0 // indirect
92-
go.opentelemetry.io/collector/config/configopaque v1.42.0 // indirect
93-
go.opentelemetry.io/collector/featuregate v1.42.0 // indirect
94-
go.opentelemetry.io/collector/internal/telemetry v0.136.0 // indirect
95-
go.opentelemetry.io/collector/pdata v1.42.0 // indirect
96-
go.opentelemetry.io/contrib/bridges/otelzap v0.12.0 // indirect
97+
go.opentelemetry.io/collector/component v1.46.0 // indirect
98+
go.opentelemetry.io/collector/config/configcompression v1.46.0 // indirect
99+
go.opentelemetry.io/collector/config/configopaque v1.46.0 // indirect
100+
go.opentelemetry.io/collector/confmap v1.46.0 // indirect
101+
go.opentelemetry.io/collector/confmap/xconfmap v0.140.0 // indirect
102+
go.opentelemetry.io/collector/featuregate v1.46.0 // indirect
103+
go.opentelemetry.io/collector/pdata v1.46.0 // indirect
97104
go.opentelemetry.io/contrib/otelconf v0.18.0 // indirect
98105
go.opentelemetry.io/otel v1.38.0 // indirect
99106
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.14.0 // indirect
@@ -115,27 +122,27 @@ require (
115122
go.opentelemetry.io/otel/trace v1.38.0 // indirect
116123
go.opentelemetry.io/proto/otlp v1.7.1 // indirect
117124
go.uber.org/multierr v1.11.0 // indirect
118-
go.uber.org/zap v1.27.0 // indirect
125+
go.uber.org/zap v1.27.1 // indirect
119126
go.yaml.in/yaml/v2 v2.4.3 // indirect
120127
go.yaml.in/yaml/v3 v3.0.4 // indirect
121-
golang.org/x/net v0.46.0 // indirect
122-
golang.org/x/oauth2 v0.30.0 // indirect
123-
golang.org/x/sync v0.17.0 // indirect
124-
golang.org/x/sys v0.37.0 // indirect
125-
golang.org/x/term v0.36.0 // indirect
126-
golang.org/x/text v0.30.0 // indirect
128+
golang.org/x/net v0.47.0 // indirect
129+
golang.org/x/oauth2 v0.31.0 // indirect
130+
golang.org/x/sync v0.18.0 // indirect
131+
golang.org/x/sys v0.38.0 // indirect
132+
golang.org/x/term v0.37.0 // indirect
133+
golang.org/x/text v0.31.0 // indirect
127134
golang.org/x/time v0.12.0 // indirect
128135
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
129136
google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 // indirect
130137
google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5 // indirect
131-
google.golang.org/grpc v1.75.1 // indirect
132-
google.golang.org/protobuf v1.36.9 // indirect
138+
google.golang.org/grpc v1.76.0 // indirect
139+
google.golang.org/protobuf v1.36.10 // indirect
133140
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
134141
gopkg.in/inf.v0 v0.9.1 // indirect
135142
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
136143
gopkg.in/yaml.v2 v2.4.0 // indirect
137144
gopkg.in/yaml.v3 v3.0.1 // indirect
138-
k8s.io/component-base v0.34.1 // indirect
145+
k8s.io/component-base v0.34.2 // indirect
139146
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
140147
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
141148
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect

0 commit comments

Comments
 (0)