Skip to content

Commit a12e884

Browse files
authored
[Maintenance] Bump Dependencies (#1979)
1 parent faef39e commit a12e884

File tree

238 files changed

+3494
-8395
lines changed

Some content is hidden

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

238 files changed

+3494
-8395
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- (Feature) (LM) Inventory Generator
66
- (Feature) (License) Activation CLI
77
- (Bugfix) (DP) Propagate Timeout Across Subcommands
8+
- (Maintenance) Bump Dependencies
89

910
## [1.3.1](https://github.com/arangodb/kube-arangodb/tree/1.3.1) (2025-10-07)
1011
- (Documentation) Add ArangoPlatformStorage Docs & Examples

Makefile

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ ifeq ($(shell uname),Darwin)
1111
REALPATH ?= grealpath
1212
endif
1313

14-
KUBERNETES_VERSION_MINOR:=31
15-
KUBERNETES_VERSION_PATCH:=8
14+
KUBERNETES_VERSION_MINOR:=32
15+
KUBERNETES_VERSION_PATCH:=9
1616

17-
ENVOY_IMAGE=envoyproxy/envoy:v1.32.5
17+
ENVOY_IMAGE=envoyproxy/envoy:v1.36.2
1818

1919
PROJECT := arangodb_operator
2020
SCRIPTDIR := $(shell pwd)
@@ -149,7 +149,7 @@ else
149149
COMPILE_DEBUG_FLAGS :=
150150
endif
151151

152-
PROTOC_VERSION := 21.1
152+
PROTOC_VERSION := 33.0
153153
ifeq ($(shell uname),Darwin)
154154
PROTOC_ARCHIVE_SUFFIX := osx-universal_binary
155155
else
@@ -898,20 +898,18 @@ tools-min: update-vendor
898898
@echo ">> Fetching golangci-lint linter"
899899
@GOBIN=$(GOPATH)/bin go install github.com/golangci/golangci-lint/cmd/[email protected]
900900
@echo ">> Fetching goimports"
901-
@GOBIN=$(GOPATH)/bin go install golang.org/x/tools/cmd/goimports@v0.19.0
901+
@GOBIN=$(GOPATH)/bin go install golang.org/x/tools/cmd/goimports@v0.38.0
902902
@echo ">> Fetching license check"
903-
@GOBIN=$(GOPATH)/bin go install github.com/google/addlicense@v1.1.1
903+
@GOBIN=$(GOPATH)/bin go install github.com/google/addlicense@v1.2.0
904904
@echo ">> Fetching yamlfmt"
905-
@GOBIN=$(GOPATH)/bin go install github.com/google/yamlfmt/cmd/yamlfmt@v0.10.0
905+
@GOBIN=$(GOPATH)/bin go install github.com/google/yamlfmt/cmd/yamlfmt@v0.20.0
906906
@echo ">> Fetching protolinter"
907-
@GOBIN=$(GOPATH)/bin go install github.com/yoheimuta/protolint/cmd/protolint@v0.47.5
907+
@GOBIN=$(GOPATH)/bin go install github.com/yoheimuta/protolint/cmd/protolint@v0.56.4
908908

909909
.PHONY: tools
910910
tools: tools-min
911911
@echo ">> Fetching gci"
912-
@GOBIN=$(GOPATH)/bin go install github.com/daixiang0/[email protected]
913-
@echo ">> Fetching yamlfmt"
914-
@GOBIN=$(GOPATH)/bin go install github.com/google/yamlfmt/cmd/[email protected]
912+
@GOBIN=$(GOPATH)/bin go install github.com/daixiang0/[email protected]
915913
@echo ">> Downloading protobuf compiler..."
916914
@curl -L ${PROTOC_URL} -o $(GOPATH)/protoc.zip
917915
@echo ">> Unzipping protobuf compiler..."
@@ -922,9 +920,9 @@ tools: tools-min
922920
@git clone --branch "master" --depth 1 https://github.com/googleapis/googleapis.git $(GOPATH)/include/googleapis
923921
@rm -Rf $(VENDORDIR)/include/googleapis/.git
924922
@echo ">> Fetching protoc go plugins..."
925-
@GOBIN=$(GOPATH)/bin go install github.com/golang/protobuf/[email protected].2
926-
@GOBIN=$(GOPATH)/bin go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2
927-
@GOBIN=$(GOPATH)/bin go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@v2.23.0
923+
@GOBIN=$(GOPATH)/bin go install github.com/golang/protobuf/[email protected].4
924+
@GOBIN=$(GOPATH)/bin go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.5.1
925+
@GOBIN=$(GOPATH)/bin go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@v2.27.3
928926
@echo ">> Fetching govulncheck"
929927
@GOBIN=$(GOPATH)/bin go install golang.org/x/vuln/cmd/[email protected]
930928

@@ -1041,7 +1039,7 @@ generate-internal:
10411039
ROOT=$(ROOT) go test --count=1 "$(REPOPATH)/internal/..."
10421040

10431041
generate-proto:
1044-
PATH="$(PATH):$(GOBUILDDIR)/bin" $(GOBUILDDIR)/bin/protoc -I.:$(GOBUILDDIR)/include/ -I.:$(GOBUILDDIR)/include/googleapis/ \
1042+
PATH="$(GOBUILDDIR)/bin:$(PATH)" $(GOBUILDDIR)/bin/protoc -I.:$(GOBUILDDIR)/include/ -I.:$(GOBUILDDIR)/include/googleapis/ \
10451043
--go_out=. --go_opt=paths=source_relative \
10461044
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
10471045
--grpc-gateway_out=. --grpc-gateway_opt=paths=source_relative \
@@ -1085,7 +1083,7 @@ sync: sync-charts
10851083
ci-check:
10861084
@$(MAKE) tidy vendor generate update-generated synchronize-v2alpha1-with-v1 sync fmt yamlfmt license protolint
10871085
@git checkout -- go.sum # ignore changes in go.sum
1088-
@if [ ! -z "$$(git status --porcelain)" ]; then echo "There are uncommited changes!"; git status; exit 1; fi
1086+
@if [ ! -z "$$(git status --porcelain)" ]; then echo "There are uncommited changes!"; git status; git diff; exit 1; fi
10891087

10901088
.PHONY: reset
10911089
reset:

examples/metrics/deployment-operator-servicemonitor.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# This example shows how to integrate with the Prometheus Operator
22
# to bring metrics from kube-arangodb to Prometheus.
3-
43
apiVersion: monitoring.coreos.com/v1
54
kind: ServiceMonitor
65
metadata:

go.mod

Lines changed: 45 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/arangodb/kube-arangodb
22

3-
go 1.23.8
3+
go 1.24.0
44

55
toolchain go1.24.5
66

@@ -10,19 +10,19 @@ replace (
1010
github.com/stretchr/testify => github.com/stretchr/testify v1.9.0
1111
github.com/ugorji/go => github.com/ugorji/go v0.0.0-20181209151446-772ced7fd4c2
1212

13-
k8s.io/api => k8s.io/api v0.31.8
14-
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.8
15-
k8s.io/apimachinery => k8s.io/apimachinery v0.31.8
16-
k8s.io/apiserver => k8s.io/apiserver v0.31.8
17-
k8s.io/cli-runtime => k8s.io/cli-runtime v0.31.8
18-
k8s.io/client-go => k8s.io/client-go v0.31.8
19-
k8s.io/cloud-provider => k8s.io/cloud-provider v0.31.8
20-
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.31.8
13+
k8s.io/api => k8s.io/api v0.32.9
14+
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.32.9
15+
k8s.io/apimachinery => k8s.io/apimachinery v0.32.9
16+
k8s.io/apiserver => k8s.io/apiserver v0.32.9
17+
k8s.io/cli-runtime => k8s.io/cli-runtime v0.32.9
18+
k8s.io/client-go => k8s.io/client-go v0.32.9
19+
k8s.io/cloud-provider => k8s.io/cloud-provider v0.32.9
20+
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.32.9
2121
k8s.io/code-generator => ./deps/k8s.io/code-generator
22-
k8s.io/component-base => k8s.io/component-base v0.31.8
23-
k8s.io/kubectl => k8s.io/kubectl v0.31.8
24-
k8s.io/kubernetes => k8s.io/kubernetes v0.31.8
25-
k8s.io/metrics => k8s.io/metrics v0.31.8
22+
k8s.io/component-base => k8s.io/component-base v0.32.9
23+
k8s.io/kubectl => k8s.io/kubectl v0.32.9
24+
k8s.io/kubernetes => k8s.io/kubernetes v0.32.9
25+
k8s.io/metrics => k8s.io/metrics v0.32.9
2626
)
2727

2828
require (
@@ -49,25 +49,25 @@ require (
4949
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.71.2
5050
github.com/prometheus-operator/prometheus-operator/pkg/client v0.0.0-00010101000000-000000000000
5151
github.com/prometheus/client_golang v1.19.1
52-
github.com/prometheus/client_model v0.6.1
52+
github.com/prometheus/client_model v0.6.2
5353
github.com/prometheus/prom2json v1.3.3
5454
github.com/robfig/cron v1.2.0
5555
github.com/rs/zerolog v1.33.0
5656
github.com/spf13/cobra v1.9.1
5757
github.com/spf13/pflag v1.0.6
5858
github.com/stretchr/testify v1.10.0
59-
golang.org/x/sync v0.14.0
60-
golang.org/x/sys v0.33.0
61-
golang.org/x/text v0.25.0
59+
golang.org/x/sync v0.17.0
60+
golang.org/x/sys v0.37.0
61+
golang.org/x/text v0.30.0
6262
golang.org/x/time v0.11.0
63-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250512202823-5a2f75b736a9
64-
google.golang.org/grpc v1.72.1
65-
google.golang.org/protobuf v1.36.6
63+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8
64+
google.golang.org/grpc v1.76.0
65+
google.golang.org/protobuf v1.36.10
6666
gopkg.in/yaml.v3 v3.0.1
67-
k8s.io/api v0.32.2
68-
k8s.io/apiextensions-apiserver v0.32.2
69-
k8s.io/apimachinery v0.32.2
70-
k8s.io/client-go v0.32.2
67+
k8s.io/api v0.32.9
68+
k8s.io/apiextensions-apiserver v0.32.9
69+
k8s.io/apimachinery v0.32.9
70+
k8s.io/client-go v0.32.9
7171
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f
7272
sigs.k8s.io/yaml v1.4.0
7373
)
@@ -79,22 +79,22 @@ require (
7979
github.com/arangodb-managed/integration-apis v0.2.1
8080
github.com/aws/aws-sdk-go v1.55.6
8181
github.com/coreos/go-oidc/v3 v3.14.1
82-
github.com/envoyproxy/go-control-plane/envoy v1.32.4
82+
github.com/envoyproxy/go-control-plane/envoy v1.35.0
8383
github.com/go-logr/zerologr v1.2.3
8484
github.com/golang-jwt/jwt/v5 v5.2.2
8585
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1
8686
github.com/jedib0t/go-pretty/v6 v6.6.5
8787
github.com/regclient/regclient v0.8.3
8888
golang.org/x/oauth2 v0.30.0
8989
google.golang.org/api v0.235.0
90-
google.golang.org/genproto/googleapis/api v0.0.0-20250512202823-5a2f75b736a9
91-
helm.sh/helm/v3 v3.17.3
90+
google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b
91+
helm.sh/helm/v3 v3.17.4
9292
k8s.io/klog/v2 v2.130.1
9393
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
9494
)
9595

9696
require (
97-
cel.dev/expr v0.20.0 // indirect
97+
cel.dev/expr v0.24.0 // indirect
9898
cloud.google.com/go v0.121.1 // indirect
9999
cloud.google.com/go/auth v0.16.1 // indirect
100100
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
@@ -105,7 +105,7 @@ require (
105105
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
106106
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
107107
github.com/BurntSushi/toml v1.4.0 // indirect
108-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
108+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0 // indirect
109109
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
110110
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
111111
github.com/MakeNowJust/heredoc v1.0.0 // indirect
@@ -121,7 +121,7 @@ require (
121121
github.com/cespare/xxhash/v2 v2.3.0 // indirect
122122
github.com/chai2010/gettext-go v1.0.2 // indirect
123123
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
124-
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
124+
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
125125
github.com/containerd/containerd v1.7.27 // indirect
126126
github.com/containerd/errdefs v0.3.0 // indirect
127127
github.com/containerd/log v0.1.0 // indirect
@@ -132,7 +132,7 @@ require (
132132
github.com/distribution/reference v0.6.0 // indirect
133133
github.com/docker/cli v25.0.1+incompatible // indirect
134134
github.com/docker/distribution v2.8.3+incompatible // indirect
135-
github.com/docker/docker v25.0.6+incompatible // indirect
135+
github.com/docker/docker v28.5.1+incompatible // indirect
136136
github.com/docker/docker-credential-helpers v0.7.0 // indirect
137137
github.com/docker/go-connections v0.5.0 // indirect
138138
github.com/docker/go-metrics v0.0.1 // indirect
@@ -148,8 +148,8 @@ require (
148148
github.com/gin-contrib/sse v0.1.0 // indirect
149149
github.com/go-errors/errors v1.4.2 // indirect
150150
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
151-
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
152-
github.com/go-logr/logr v1.4.2 // indirect
151+
github.com/go-jose/go-jose/v4 v4.1.2 // indirect
152+
github.com/go-logr/logr v1.4.3 // indirect
153153
github.com/go-logr/stdr v1.2.2 // indirect
154154
github.com/go-openapi/jsonpointer v0.21.0 // indirect
155155
github.com/go-openapi/jsonreference v0.20.2 // indirect
@@ -160,7 +160,6 @@ require (
160160
github.com/gobwas/glob v0.2.3 // indirect
161161
github.com/goccy/go-json v0.10.2 // indirect
162162
github.com/gogo/protobuf v1.3.2 // indirect
163-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
164163
github.com/google/btree v1.0.1 // indirect
165164
github.com/google/gnostic-models v0.6.8 // indirect
166165
github.com/google/go-cmp v0.7.0 // indirect
@@ -176,7 +175,6 @@ require (
176175
github.com/hashicorp/errwrap v1.1.0 // indirect
177176
github.com/hashicorp/go-multierror v1.1.1 // indirect
178177
github.com/huandu/xstrings v1.5.0 // indirect
179-
github.com/imdario/mergo v0.3.16 // indirect
180178
github.com/inconshreveable/mousetrap v1.1.0 // indirect
181179
github.com/jmespath/go-jmespath v0.4.0 // indirect
182180
github.com/jmoiron/sqlx v1.4.0 // indirect
@@ -236,24 +234,23 @@ require (
236234
go.opentelemetry.io/contrib/detectors/gcp v1.36.0 // indirect
237235
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
238236
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
239-
go.opentelemetry.io/otel v1.36.0 // indirect
240-
go.opentelemetry.io/otel/metric v1.36.0 // indirect
241-
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
242-
go.opentelemetry.io/otel/sdk/metric v1.36.0 // indirect
243-
go.opentelemetry.io/otel/trace v1.36.0 // indirect
237+
go.opentelemetry.io/otel v1.37.0 // indirect
238+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
239+
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
240+
go.opentelemetry.io/otel/sdk/metric v1.37.0 // indirect
241+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
244242
golang.org/x/arch v0.3.0 // indirect
245-
golang.org/x/crypto v0.38.0 // indirect
246-
golang.org/x/net v0.40.0 // indirect
247-
golang.org/x/term v0.32.0 // indirect
248-
golang.org/x/tools v0.27.0 // indirect
243+
golang.org/x/crypto v0.43.0 // indirect
244+
golang.org/x/net v0.46.0 // indirect
245+
golang.org/x/term v0.36.0 // indirect
249246
google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect
250247
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
251248
gopkg.in/inf.v0 v0.9.1 // indirect
252249
gopkg.in/yaml.v2 v2.4.0 // indirect
253-
k8s.io/apiserver v0.32.2 // indirect
254-
k8s.io/cli-runtime v0.32.2 // indirect
255-
k8s.io/component-base v0.32.2 // indirect
256-
k8s.io/kubectl v0.32.2 // indirect
250+
k8s.io/apiserver v0.32.9 // indirect
251+
k8s.io/cli-runtime v0.32.9 // indirect
252+
k8s.io/component-base v0.32.9 // indirect
253+
k8s.io/kubectl v0.32.9 // indirect
257254
oras.land/oras-go v1.2.5 // indirect
258255
sigs.k8s.io/controller-runtime v0.16.3 // indirect
259256
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect

0 commit comments

Comments
 (0)