Skip to content

Commit 581c085

Browse files
committed
feat: update dependencies
Kubernetes: 1.32.0-rc.0 Flannel: 0.26.1 Coredns: 1.12.0 Plus some small bumps. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent e905846 commit 581c085

50 files changed

Lines changed: 280 additions & 301 deletions

File tree

Some content is hidden

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

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ ZSTD_COMPRESSION_LEVEL ?= 18
1717
CI_RELEASE_TAG := $(shell git log --oneline --format=%B -n 1 HEAD^2 -- 2>/dev/null | head -n 1 | sed -r "/^release\(.*\)/ s/^release\((.*)\):.*$$/\\1/; t; Q")
1818

1919
ARTIFACTS := _out
20-
TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0-alpha.0-11-gaa0beaf
20+
TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0
2121

2222
DEBUG_TOOLS_SOURCE := scratch
2323

2424
PKGS_PREFIX ?= ghcr.io/siderolabs
25-
PKGS ?= v1.9.0-alpha.0-51-g0272ad4
25+
PKGS ?= v1.9.0-alpha.0-52-g2abcd4b
2626
EXTRAS ?= v1.9.0-alpha.0-2-g78ba66b
2727

2828
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest
@@ -70,13 +70,13 @@ GOIMPORTS_VERSION ?= v0.27.0
7070
# renovate: datasource=go depName=mvdan.cc/gofumpt
7171
GOFUMPT_VERSION ?= v0.7.0
7272
# renovate: datasource=go depName=github.com/golangci/golangci-lint
73-
GOLANGCILINT_VERSION ?= v1.62.0
73+
GOLANGCILINT_VERSION ?= v1.62.2
7474
# renovate: datasource=go depName=golang.org/x/tools
7575
STRINGER_VERSION ?= v0.27.0
7676
# renovate: datasource=go depName=github.com/dmarkham/enumer
7777
ENUMER_VERSION ?= v1.5.10
7878
# renovate: datasource=go depName=k8s.io/code-generator
79-
DEEPCOPY_GEN_VERSION ?= v0.31.2
79+
DEEPCOPY_GEN_VERSION ?= v0.31.3
8080
# renovate: datasource=go depName=github.com/planetscale/vtprotobuf
8181
VTPROTOBUF_VERSION ?= v0.6.0
8282
# renovate: datasource=go depName=github.com/siderolabs/deep-copy
@@ -88,9 +88,9 @@ PROTOTOOL_VERSION ?= v1.10.0
8888
# renovate: datasource=go depName=github.com/pseudomuto/protoc-gen-doc
8989
PROTOC_GEN_DOC_VERSION ?= v1.5.1
9090
# renovate: datasource=npm depName=markdownlint-cli
91-
MARKDOWNLINTCLI_VERSION ?= 0.42.0
91+
MARKDOWNLINTCLI_VERSION ?= 0.43.0
9292
# renovate: datasource=npm depName=textlint
93-
TEXTLINT_VERSION ?= 14.2.1
93+
TEXTLINT_VERSION ?= 14.3.0
9494
# renovate: datasource=npm depName=textlint-filter-rule-comments
9595
TEXTLINT_FILTER_RULE_COMMENTS_VERSION ?= 1.2.2
9696
# renovate: datasource=npm depName=textlint-rule-one-sentence-per-line
@@ -105,11 +105,11 @@ INTEGRATION_TEST := integration-test
105105
INTEGRATION_TEST_DEFAULT_TARGET := $(INTEGRATION_TEST)-$(OPERATING_SYSTEM)
106106
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
107107
# renovate: datasource=github-releases depName=kubernetes/kubernetes
108-
KUBECTL_VERSION ?= v1.32.0-beta.0
108+
KUBECTL_VERSION ?= v1.32.0-rc.0
109109
# renovate: datasource=github-releases depName=kastenhq/kubestr
110110
KUBESTR_VERSION ?= v0.4.46
111111
# renovate: datasource=github-releases depName=helm/helm
112-
HELM_VERSION ?= v3.16.2
112+
HELM_VERSION ?= v3.16.3
113113
# renovate: datasource=github-releases depName=cilium/cilium-cli
114114
CILIUM_CLI_VERSION ?= v0.16.20
115115
# renovate: datasource=github-releases depName=microsoft/secureboot_objects

go.mod

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ replace github.com/insomniacslk/dhcp => github.com/smira/dhcp v0.0.0-20241001122
3232

3333
// Kubernetes dependencies sharing the same version.
3434
require (
35-
k8s.io/api v0.32.0-beta.0
36-
k8s.io/apimachinery v0.32.0-beta.0
37-
k8s.io/apiserver v0.32.0-beta.0
38-
k8s.io/client-go v0.32.0-beta.0
39-
k8s.io/component-base v0.32.0-beta.0
40-
k8s.io/cri-api v0.32.0-beta.0
41-
k8s.io/kube-scheduler v0.32.0-beta.0
42-
k8s.io/kubectl v0.32.0-beta.0
43-
k8s.io/kubelet v0.32.0-beta.0
44-
k8s.io/pod-security-admission v0.32.0-beta.0
35+
k8s.io/api v0.32.0-rc.0
36+
k8s.io/apimachinery v0.32.0-rc.0
37+
k8s.io/apiserver v0.32.0-rc.0
38+
k8s.io/client-go v0.32.0-rc.0
39+
k8s.io/component-base v0.32.0-rc.0
40+
k8s.io/cri-api v0.32.0-rc.0
41+
k8s.io/kube-scheduler v0.32.0-rc.0
42+
k8s.io/kubectl v0.32.0-rc.0
43+
k8s.io/kubelet v0.32.0-rc.0
44+
k8s.io/pod-security-admission v0.32.0-rc.0
4545
)
4646

4747
require (
@@ -51,15 +51,15 @@ require (
5151
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.3.0
5252
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0
5353
github.com/alexflint/go-filemutex v1.3.0
54-
github.com/aws/aws-sdk-go-v2/config v1.28.3
55-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.19
56-
github.com/aws/aws-sdk-go-v2/service/kms v1.37.5
57-
github.com/aws/smithy-go v1.22.0
54+
github.com/aws/aws-sdk-go-v2/config v1.28.5
55+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.20
56+
github.com/aws/aws-sdk-go-v2/service/kms v1.37.6
57+
github.com/aws/smithy-go v1.22.1
5858
github.com/beevik/ntp v1.4.3
5959
github.com/benbjohnson/clock v1.3.5 // project archived on 2023-05-18
6060
github.com/blang/semver/v4 v4.0.0
6161
github.com/cenkalti/backoff/v4 v4.3.0
62-
github.com/containerd/cgroups/v3 v3.0.3
62+
github.com/containerd/cgroups/v3 v3.0.4
6363
github.com/containerd/containerd/api v1.8.0
6464
github.com/containerd/containerd/v2 v2.0.0
6565
github.com/containerd/errdefs v1.0.0
@@ -77,7 +77,7 @@ require (
7777
github.com/docker/go-connections v0.5.0
7878
github.com/dustin/go-humanize v1.0.1
7979
github.com/ecks/uefi v0.0.0-20221116212947-caef65d070eb
80-
github.com/elastic/go-libaudit/v2 v2.6.0
80+
github.com/elastic/go-libaudit/v2 v2.6.1
8181
github.com/fatih/color v1.18.0
8282
github.com/florianl/go-tc v0.4.4
8383
github.com/foxboron/go-uefi v0.0.0-20241017190036-fab4fdf2f2f3
@@ -89,7 +89,7 @@ require (
8989
github.com/godbus/dbus/v5 v5.1.0
9090
github.com/golang/mock v1.6.0
9191
github.com/google/cadvisor v0.51.0
92-
github.com/google/cel-go v0.22.0
92+
github.com/google/cel-go v0.22.1
9393
github.com/google/go-containerregistry v0.20.2
9494
github.com/google/go-tpm v0.9.1
9595
github.com/google/nftables v0.2.0
@@ -101,7 +101,7 @@ require (
101101
github.com/hashicorp/go-envparse v0.1.0
102102
github.com/hashicorp/go-getter/v2 v2.2.3
103103
github.com/hashicorp/go-multierror v1.1.1
104-
github.com/hetznercloud/hcloud-go/v2 v2.16.0
104+
github.com/hetznercloud/hcloud-go/v2 v2.17.0
105105
github.com/insomniacslk/dhcp v0.0.0-20240829085014-a3a4c1f04475
106106
github.com/jeromer/syslogparser v1.1.0
107107
github.com/jsimonetti/rtnetlink/v2 v2.0.2
@@ -122,7 +122,7 @@ require (
122122
github.com/nberlee/go-netstat v0.1.2
123123
github.com/opencontainers/go-digest v1.0.0
124124
github.com/opencontainers/image-spec v1.1.0
125-
github.com/opencontainers/runc v1.2.1
125+
github.com/opencontainers/runc v1.2.2
126126
github.com/opencontainers/runtime-spec v1.2.0
127127
github.com/packethost/packngo v0.31.0
128128
github.com/pelletier/go-toml/v2 v2.2.3
@@ -134,7 +134,7 @@ require (
134134
github.com/rs/xid v1.6.0
135135
github.com/ryanuber/columnize v2.1.2+incompatible
136136
github.com/ryanuber/go-glob v1.0.0
137-
github.com/safchain/ethtool v0.4.2-0.20241117145548-4e3aff457298
137+
github.com/safchain/ethtool v0.5.9
138138
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30
139139
github.com/siderolabs/crypto v0.5.0
140140
github.com/siderolabs/discovery-api v0.1.5
@@ -188,7 +188,7 @@ require (
188188
golang.org/x/time v0.8.0
189189
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
190190
google.golang.org/grpc v1.68.0 // do not update to 1.68.0 until we find a way around https://github.com/grpc/grpc-go/pull/7535
191-
google.golang.org/protobuf v1.35.1
191+
google.golang.org/protobuf v1.35.2
192192
gopkg.in/yaml.v3 v3.0.1
193193
k8s.io/klog/v2 v2.130.1
194194
kernel.org/pub/linux/libs/security/libcap/cap v1.2.72
@@ -208,29 +208,29 @@ require (
208208
github.com/MakeNowJust/heredoc v1.0.0 // indirect
209209
github.com/Microsoft/go-winio v0.6.2 // indirect
210210
github.com/Microsoft/hcsshim v0.12.9 // indirect
211-
github.com/ProtonMail/go-crypto v1.1.0-alpha.5.0.20240827111422-b5837fa4476e // indirect
211+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
212212
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
213-
github.com/ProtonMail/gopenpgp/v2 v2.7.5 // indirect
214-
github.com/adrg/xdg v0.5.0 // indirect
215-
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
213+
github.com/ProtonMail/gopenpgp/v2 v2.8.1 // indirect
214+
github.com/adrg/xdg v0.5.3 // indirect
215+
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
216216
github.com/apparentlymart/go-cidr v1.1.0 // indirect
217217
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect
218-
github.com/aws/aws-sdk-go-v2 v1.32.4 // indirect
219-
github.com/aws/aws-sdk-go-v2/credentials v1.17.44 // indirect
220-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.23 // indirect
221-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.23 // indirect
218+
github.com/aws/aws-sdk-go-v2 v1.32.5 // indirect
219+
github.com/aws/aws-sdk-go-v2/credentials v1.17.46 // indirect
220+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.24 // indirect
221+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.24 // indirect
222222
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
223-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
224-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.4 // indirect
225-
github.com/aws/aws-sdk-go-v2/service/sso v1.24.5 // indirect
226-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.4 // indirect
227-
github.com/aws/aws-sdk-go-v2/service/sts v1.32.4 // indirect
223+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
224+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.5 // indirect
225+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.6 // indirect
226+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.5 // indirect
227+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.1 // indirect
228228
github.com/beorn7/perks v1.0.1 // indirect
229229
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
230230
github.com/cespare/xxhash/v2 v2.3.0 // indirect
231231
github.com/chai2010/gettext-go v1.0.2 // indirect
232232
github.com/cilium/ebpf v0.16.0 // indirect
233-
github.com/cloudflare/circl v1.3.9 // indirect
233+
github.com/cloudflare/circl v1.5.0 // indirect
234234
github.com/containerd/continuity v0.4.4 // indirect
235235
github.com/containerd/errdefs/pkg v0.3.0 // indirect
236236
github.com/containerd/fifo v1.1.0 // indirect
@@ -246,7 +246,7 @@ require (
246246
github.com/docker/distribution v2.8.3+incompatible // indirect
247247
github.com/docker/docker-credential-helpers v0.7.0 // indirect
248248
github.com/docker/go-units v0.5.0 // indirect
249-
github.com/emicklei/dot v1.6.2 // indirect
249+
github.com/emicklei/dot v1.6.3 // indirect
250250
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
251251
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
252252
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
@@ -274,7 +274,7 @@ require (
274274
github.com/gorilla/websocket v1.5.1 // indirect
275275
github.com/gosuri/uilive v0.0.4 // indirect
276276
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
277-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
277+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
278278
github.com/hashicorp/errwrap v1.1.0 // indirect
279279
github.com/hashicorp/go-safetemp v1.0.0 // indirect
280280
github.com/hashicorp/go-version v1.6.0 // indirect
@@ -320,7 +320,7 @@ require (
320320
github.com/pierrec/lz4/v4 v4.1.21 // indirect
321321
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
322322
github.com/pkg/errors v0.9.1 // indirect
323-
github.com/planetscale/vtprotobuf v0.6.1-0.20240917153116-6f2963f01587 // indirect
323+
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2 // indirect
324324
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
325325
github.com/prometheus/client_golang v1.20.5 // indirect
326326
github.com/prometheus/client_model v0.6.1 // indirect
@@ -352,18 +352,18 @@ require (
352352
go.opentelemetry.io/otel/trace v1.31.0 // indirect
353353
go.uber.org/multierr v1.11.0 // indirect
354354
golang.org/x/crypto v0.29.0 // indirect
355-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
356-
golang.org/x/mod v0.21.0 // indirect
357-
golang.org/x/tools v0.26.0 // indirect
355+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
356+
golang.org/x/mod v0.22.0 // indirect
357+
golang.org/x/tools v0.27.0 // indirect
358358
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
359359
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
360-
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
361-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
360+
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
361+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
362362
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
363363
gopkg.in/inf.v0 v0.9.1 // indirect
364364
gopkg.in/yaml.v2 v2.4.0 // indirect
365-
k8s.io/cli-runtime v0.32.0-beta.0 // indirect
366-
k8s.io/kube-openapi v0.0.0-20240827152857-f7e401e7b4c2 // indirect
365+
k8s.io/cli-runtime v0.32.0-rc.0 // indirect
366+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
367367
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
368368
kernel.org/pub/linux/libs/security/libcap/psx v1.2.72 // indirect
369369
rsc.io/qr v0.2.0 // indirect

0 commit comments

Comments
 (0)