Skip to content

Commit dbeac6e

Browse files
committed
udpate versions
1 parent e8d0e8c commit dbeac6e

File tree

3 files changed

+159
-173
lines changed

3 files changed

+159
-173
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GOLANGCI_VERSION = 1.59.1
1+
GOLANGCI_VERSION = 1.61.0
22
HELM_DOCS_VERSION = 1.14.2
33
LICENCES_IGNORE_LIST = $(shell cat licenses/licenses-ignore-list.txt)
44

go.mod

Lines changed: 54 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,30 @@
11
module github.com/stackitcloud/stackit-cert-manager-webhook
22

3-
go 1.22.0
4-
5-
toolchain go1.23.0
3+
go 1.23.0
64

75
// Do not remove this comment:
86
// please place any replace statements here at the top for visibility and add a
97
// comment to it as to when it can be removed
108

11-
// In prometheus/common v0.47.0 and v0.48.0, breaking changes were introduced in the "github.com/prometheus/common/expfmt"
12-
// package. Not all our dependencies have been upgraded to use the new API. Until then, compiling cert-manager
13-
// with the newer versions of "github.com/prometheus/common/expfmt" and "github.com/prometheus/client_golang"
14-
// fails. These replace statements can be removed once expfmt.FmtText is no longer used by any of the libraries
15-
// we depend on.
16-
replace github.com/prometheus/common => github.com/prometheus/common v0.55.0
17-
18-
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.20.1
19-
20-
// fixes k8s/apiserver: cannot use &itemsNode{…} (value of type *itemsNode) as checker.AstNode value in return
21-
// statement: *itemsNode does not implement checker.AstNode (wrong type for method Expr)
22-
replace github.com/google/cel-go => github.com/google/cel-go v0.21.0
9+
replace sigs.k8s.io/structured-merge-diff/v4 => sigs.k8s.io/structured-merge-diff/v4 v4.4.1
2310

2411
require (
25-
github.com/cert-manager/cert-manager v1.15.3
26-
github.com/stackitcloud/stackit-sdk-go/core v0.12.0
27-
github.com/stackitcloud/stackit-sdk-go/services/dns v0.10.0
12+
github.com/cert-manager/cert-manager v1.16.0
13+
github.com/stackitcloud/stackit-sdk-go/core v0.14.0
14+
github.com/stackitcloud/stackit-sdk-go/services/dns v0.11.0
2815
github.com/stretchr/testify v1.9.0
29-
go.uber.org/mock v0.4.0
16+
go.uber.org/mock v0.5.0
3017
go.uber.org/zap v1.27.0
31-
k8s.io/api v0.31.0
32-
k8s.io/apiextensions-apiserver v0.31.0
33-
k8s.io/apimachinery v0.31.0
34-
k8s.io/client-go v0.31.0
35-
k8s.io/utils v0.0.0-20240821151609-f90d01438635
18+
k8s.io/api v0.31.2
19+
k8s.io/apiextensions-apiserver v0.31.2
20+
k8s.io/apimachinery v0.31.2
21+
k8s.io/client-go v0.31.2
22+
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078
3623
)
3724

3825
require (
3926
github.com/NYTimes/gziphandler v1.1.1 // indirect
40-
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
27+
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
4128
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
4229
github.com/beorn7/perks v1.0.1 // indirect
4330
github.com/blang/semver/v4 v4.0.0 // indirect
@@ -49,7 +36,7 @@ require (
4936
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
5037
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
5138
github.com/felixge/httpsnoop v1.0.4 // indirect
52-
github.com/fsnotify/fsnotify v1.7.0 // indirect
39+
github.com/fsnotify/fsnotify v1.8.0 // indirect
5340
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5441
github.com/go-logr/logr v1.4.2 // indirect
5542
github.com/go-logr/stdr v1.2.2 // indirect
@@ -61,78 +48,78 @@ require (
6148
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
6249
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6350
github.com/golang/protobuf v1.5.4 // indirect
64-
github.com/google/cel-go v0.20.1 // indirect
51+
github.com/google/cel-go v0.21.0 // indirect
6552
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
6653
github.com/google/go-cmp v0.6.0 // indirect
6754
github.com/google/gofuzz v1.2.0 // indirect
6855
github.com/google/uuid v1.6.0 // indirect
6956
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
70-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.21.0 // indirect
57+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
7158
github.com/imdario/mergo v0.3.16 // indirect
7259
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7360
github.com/josharian/intern v1.0.0 // indirect
7461
github.com/json-iterator/go v1.1.12 // indirect
75-
github.com/klauspost/compress v1.17.9 // indirect
62+
github.com/klauspost/compress v1.17.11 // indirect
7663
github.com/kylelemons/godebug v1.1.0 // indirect
7764
github.com/mailru/easyjson v0.7.7 // indirect
78-
github.com/miekg/dns v1.1.59 // indirect
65+
github.com/miekg/dns v1.1.62 // indirect
7966
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8067
github.com/modern-go/reflect2 v1.0.2 // indirect
8168
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8269
github.com/pkg/errors v0.9.1 // indirect
8370
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
84-
github.com/prometheus/client_golang v1.19.1 // indirect
71+
github.com/prometheus/client_golang v1.20.5 // indirect
8572
github.com/prometheus/client_model v0.6.1 // indirect
86-
github.com/prometheus/common v0.55.0 // indirect
73+
github.com/prometheus/common v0.60.1 // indirect
8774
github.com/prometheus/procfs v0.15.1 // indirect
8875
github.com/spf13/cobra v1.8.1 // indirect
8976
github.com/spf13/pflag v1.0.5 // indirect
9077
github.com/stoewer/go-strcase v1.3.0 // indirect
9178
github.com/x448/float16 v0.8.4 // indirect
92-
go.etcd.io/etcd/api/v3 v3.5.15 // indirect
93-
go.etcd.io/etcd/client/pkg/v3 v3.5.15 // indirect
94-
go.etcd.io/etcd/client/v3 v3.5.15 // indirect
95-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
96-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
97-
go.opentelemetry.io/otel v1.28.0 // indirect
98-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
99-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect
100-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
101-
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
102-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
79+
go.etcd.io/etcd/api/v3 v3.5.16 // indirect
80+
go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect
81+
go.etcd.io/etcd/client/v3 v3.5.16 // indirect
82+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 // indirect
83+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
84+
go.opentelemetry.io/otel v1.31.0 // indirect
85+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 // indirect
86+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 // indirect
87+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
88+
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
89+
go.opentelemetry.io/otel/trace v1.31.0 // indirect
10390
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
10491
go.uber.org/multierr v1.11.0 // indirect
105-
golang.org/x/crypto v0.25.0 // indirect
106-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
107-
golang.org/x/mod v0.19.0 // indirect
108-
golang.org/x/net v0.27.0 // indirect
109-
golang.org/x/oauth2 v0.21.0 // indirect
110-
golang.org/x/sync v0.7.0 // indirect
111-
golang.org/x/sys v0.22.0 // indirect
112-
golang.org/x/term v0.22.0 // indirect
113-
golang.org/x/text v0.16.0 // indirect
114-
golang.org/x/time v0.5.0 // indirect
115-
golang.org/x/tools v0.23.0 // indirect
92+
golang.org/x/crypto v0.28.0 // indirect
93+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
94+
golang.org/x/mod v0.21.0 // indirect
95+
golang.org/x/net v0.30.0 // indirect
96+
golang.org/x/oauth2 v0.23.0 // indirect
97+
golang.org/x/sync v0.8.0 // indirect
98+
golang.org/x/sys v0.26.0 // indirect
99+
golang.org/x/term v0.25.0 // indirect
100+
golang.org/x/text v0.19.0 // indirect
101+
golang.org/x/time v0.7.0 // indirect
102+
golang.org/x/tools v0.26.0 // indirect
116103
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
117104
google.golang.org/genproto v0.0.0-20240730163845-b1a4ccb954bf // indirect
118-
google.golang.org/genproto/googleapis/api v0.0.0-20240730163845-b1a4ccb954bf // indirect
119-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf // indirect
120-
google.golang.org/grpc v1.65.0 // indirect
121-
google.golang.org/protobuf v1.34.2 // indirect
105+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
106+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
107+
google.golang.org/grpc v1.67.1 // indirect
108+
google.golang.org/protobuf v1.35.1 // indirect
122109
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
123110
gopkg.in/inf.v0 v0.9.1 // indirect
124111
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
125112
gopkg.in/yaml.v2 v2.4.0 // indirect
126113
gopkg.in/yaml.v3 v3.0.1 // indirect
127-
k8s.io/apiserver v0.31.0 // indirect
128-
k8s.io/component-base v0.31.0 // indirect
114+
k8s.io/apiserver v0.31.2 // indirect
115+
k8s.io/component-base v0.31.2 // indirect
129116
k8s.io/klog/v2 v2.130.1 // indirect
130-
k8s.io/kms v0.31.0 // indirect
131-
k8s.io/kube-openapi v0.0.0-20240730131305-7a9a4e85957e // indirect
132-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
133-
sigs.k8s.io/controller-runtime v0.18.2 // indirect
134-
sigs.k8s.io/gateway-api v1.1.0 // indirect
135-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
136-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
117+
k8s.io/kms v0.31.2 // indirect
118+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
119+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect
120+
sigs.k8s.io/controller-runtime v0.19.1 // indirect
121+
sigs.k8s.io/gateway-api v1.1.1 // indirect
122+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
123+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
137124
sigs.k8s.io/yaml v1.4.0 // indirect
138125
)

0 commit comments

Comments
 (0)