Skip to content

Commit 65a9275

Browse files
committed
feat: update major components
Kubernetes: 1.27.9 containerd: 1.7.20 runc: 1.1.13 Linux: 6.1.100 Go: 1.21.12 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent 46c8ac1 commit 65a9275

File tree

11 files changed

+134
-131
lines changed

11 files changed

+134
-131
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ NAME = Talos
1515
CLOUD_IMAGES_EXTRA_ARGS ?= ""
1616

1717
ARTIFACTS := _out
18-
TOOLS ?= ghcr.io/siderolabs/tools:v1.6.0-3-gae30965
19-
PKGS ?= v1.6.0-27-gdf44f94
18+
TOOLS ?= ghcr.io/siderolabs/tools:v1.6.0-4-g8ebe1dc
19+
PKGS ?= v1.6.0-28-g2472b6d
2020
PKG_KERNEL ?= ghcr.io/siderolabs/kernel:$(PKGS)
2121
EXTRAS ?= v1.6.0-2-g9234398
2222
# renovate: datasource=github-tags depName=golang/go
@@ -57,7 +57,7 @@ INTEGRATION_TEST_DEFAULT_TARGET := integration-test-$(OPERATING_SYSTEM)
5757
MODULE_SIG_VERIFY_DEFAULT_TARGET := module-sig-verify-$(OPERATING_SYSTEM)
5858
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
5959
# renovate: datasource=github-releases depName=kubernetes/kubernetes
60-
KUBECTL_VERSION ?= v1.29.3
60+
KUBECTL_VERSION ?= v1.29.7
6161
# renovate: datasource=github-releases depName=kastenhq/kubestr
6262
KUBESTR_VERSION ?= v0.4.41
6363
# renovate: datasource=github-releases depName=helm/helm

go.mod

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ replace (
1313

1414
// Kubernetes dependencies sharing the same version.
1515
require (
16-
k8s.io/api v0.29.3
17-
k8s.io/apimachinery v0.29.3
18-
k8s.io/apiserver v0.29.3
19-
k8s.io/client-go v0.29.3
20-
k8s.io/component-base v0.29.3
21-
k8s.io/cri-api v0.29.3
22-
k8s.io/kube-scheduler v0.29.3
23-
k8s.io/kubectl v0.29.3
24-
k8s.io/kubelet v0.29.3
25-
k8s.io/pod-security-admission v0.29.3
16+
k8s.io/api v0.29.7
17+
k8s.io/apimachinery v0.29.7
18+
k8s.io/apiserver v0.29.7
19+
k8s.io/client-go v0.29.7
20+
k8s.io/component-base v0.29.7
21+
k8s.io/cri-api v0.29.7
22+
k8s.io/kube-scheduler v0.29.7
23+
k8s.io/kubectl v0.29.7
24+
k8s.io/kubelet v0.29.7
25+
k8s.io/pod-security-admission v0.29.7
2626
)
2727

2828
require (
2929
cloud.google.com/go/compute/metadata v0.2.3
30-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0
31-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0
30+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
31+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
3232
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.0.0
3333
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1
3434
github.com/BurntSushi/toml v1.3.2
@@ -66,8 +66,8 @@ require (
6666
github.com/google/go-cmp v0.6.0
6767
github.com/google/go-containerregistry v0.16.1
6868
github.com/google/go-tpm v0.9.0
69-
github.com/google/nftables v0.1.0
70-
github.com/google/uuid v1.4.0
69+
github.com/google/nftables v0.2.0
70+
github.com/google/uuid v1.6.0
7171
github.com/gopacket/gopacket v1.2.0
7272
github.com/gosuri/uiprogress v0.0.1
7373
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
@@ -129,7 +129,7 @@ require (
129129
github.com/siderolabs/talos/pkg/machinery v1.6.7
130130
github.com/spf13/cobra v1.8.0
131131
github.com/spf13/pflag v1.0.5
132-
github.com/stretchr/testify v1.8.4
132+
github.com/stretchr/testify v1.9.0
133133
github.com/u-root/u-root v0.11.0
134134
github.com/ulikunitz/xz v0.5.11
135135
github.com/vishvananda/netlink v1.2.1-beta.2
@@ -142,12 +142,12 @@ require (
142142
go.etcd.io/etcd/etcdutl/v3 v3.5.11
143143
go.uber.org/zap v1.26.0
144144
go4.org/netipx v0.0.0-20230824141953-6213f710f925
145-
golang.org/x/net v0.19.0
145+
golang.org/x/net v0.26.0
146146
golang.org/x/oauth2 v0.15.0
147-
golang.org/x/sync v0.5.0
148-
golang.org/x/sys v0.16.0
149-
golang.org/x/term v0.15.0
150-
golang.org/x/text v0.14.0
147+
golang.org/x/sync v0.7.0
148+
golang.org/x/sys v0.21.0
149+
golang.org/x/term v0.21.0
150+
golang.org/x/text v0.16.0
151151
golang.org/x/time v0.5.0
152152
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
153153
google.golang.org/grpc v1.59.0
@@ -163,10 +163,10 @@ require (
163163
github.com/0x5a17ed/itkit v0.6.0 // indirect
164164
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
165165
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
166-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.0 // indirect
166+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
167167
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 // indirect
168168
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
169-
github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 // indirect
169+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
170170
github.com/MakeNowJust/heredoc v1.0.0 // indirect
171171
github.com/Microsoft/go-winio v0.6.1 // indirect
172172
github.com/Microsoft/hcsshim v0.11.4 // indirect
@@ -222,7 +222,7 @@ require (
222222
github.com/go-openapi/swag v0.22.3 // indirect
223223
github.com/gogo/protobuf v1.3.2 // indirect
224224
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
225-
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
225+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
226226
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
227227
github.com/golang/protobuf v1.5.4 // indirect
228228
github.com/google/btree v1.0.1 // indirect
@@ -256,7 +256,7 @@ require (
256256
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
257257
github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 // indirect
258258
github.com/mdlayher/packet v1.1.2 // indirect
259-
github.com/mdlayher/socket v0.4.1 // indirect
259+
github.com/mdlayher/socket v0.5.0 // indirect
260260
github.com/mitchellh/go-homedir v1.1.0 // indirect
261261
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
262262
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
@@ -278,7 +278,7 @@ require (
278278
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
279279
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
280280
github.com/pierrec/lz4/v4 v4.1.14 // indirect
281-
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
281+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
282282
github.com/pkg/errors v0.9.1 // indirect
283283
github.com/pmezard/go-difflib v1.0.0 // indirect
284284
github.com/prometheus/client_golang v1.17.0 // indirect
@@ -315,10 +315,10 @@ require (
315315
go.opentelemetry.io/otel/trace v1.20.0 // indirect
316316
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
317317
go.uber.org/multierr v1.11.0 // indirect
318-
golang.org/x/crypto v0.16.0 // indirect
318+
golang.org/x/crypto v0.24.0 // indirect
319319
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
320-
golang.org/x/mod v0.14.0 // indirect
321-
golang.org/x/tools v0.16.1 // indirect
320+
golang.org/x/mod v0.17.0 // indirect
321+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
322322
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
323323
golang.zx2c4.com/wireguard v0.0.0-20231022001213-2e0774f246fb // indirect
324324
google.golang.org/appengine v1.6.7 // indirect
@@ -328,7 +328,7 @@ require (
328328
gopkg.in/inf.v0 v0.9.1 // indirect
329329
gopkg.in/ini.v1 v1.67.0 // indirect
330330
gopkg.in/yaml.v2 v2.4.0 // indirect
331-
k8s.io/cli-runtime v0.29.3 // indirect
331+
k8s.io/cli-runtime v0.29.7 // indirect
332332
k8s.io/klog v1.0.0 // indirect
333333
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
334334
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect

0 commit comments

Comments
 (0)