Skip to content

Commit e0434d7

Browse files
committed
feat: update dependencies
Bring in new tools, pkgs, update Go dependencies and others. In preparation for Talos 1.9.0-alpha.0. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent 5c5a248 commit e0434d7

File tree

107 files changed

+2256
-7755
lines changed

Some content is hidden

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

107 files changed

+2256
-7755
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax = docker/dockerfile-upstream:1.9.0-labs
1+
# syntax = docker/dockerfile-upstream:1.10.0-labs
22

33
# Meta args applied to stage base names.
44

@@ -839,7 +839,7 @@ ARG TARGETARCH
839839
RUN --mount=type=cache,target=/.cache GOOS=linux GOARCH=${TARGETARCH} go build ${GO_BUILDFLAGS} -ldflags "${GO_LDFLAGS}" -o /installer
840840
RUN chmod +x /installer
841841

842-
FROM alpine:3.20.2 AS unicode-pf2
842+
FROM alpine:3.20.3 AS unicode-pf2
843843
RUN apk add --no-cache --update --no-scripts grub
844844

845845
FROM scratch AS install-artifacts-amd64
@@ -862,7 +862,7 @@ FROM install-artifacts-${TARGETARCH} AS install-artifacts-targetarch
862862

863863
FROM install-artifacts-${INSTALLER_ARCH} AS install-artifacts
864864

865-
FROM alpine:3.20.2 AS installer-image
865+
FROM alpine:3.20.3 AS installer-image
866866
ARG SOURCE_DATE_EPOCH
867867
ENV SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH}
868868
RUN apk add --no-cache --update --no-scripts \

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ 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-3-g1151610
20+
TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0-alpha.0-4-g2058296
2121

2222
PKGS_PREFIX ?= ghcr.io/siderolabs
23-
PKGS ?= v1.9.0-alpha.0-18-gba0341e
24-
EXTRAS ?= v1.9.0-alpha.0
23+
PKGS ?= v1.9.0-alpha.0-24-gbe92da0
24+
EXTRAS ?= v1.9.0-alpha.0-1-geab6e58
2525

2626
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest
2727
CONFORMANCE_IMAGE ?= ghcr.io/siderolabs/conform:latest
@@ -63,13 +63,13 @@ PKG_TALOSCTL_CNI_BUNDLE_INSTALL ?= $(PKGS_PREFIX)/talosctl-cni-bundle-install:$(
6363
# renovate: datasource=github-tags depName=golang/go
6464
GO_VERSION ?= 1.23
6565
# renovate: datasource=go depName=golang.org/x/tools
66-
GOIMPORTS_VERSION ?= v0.25.0
66+
GOIMPORTS_VERSION ?= v0.26.0
6767
# renovate: datasource=go depName=mvdan.cc/gofumpt
6868
GOFUMPT_VERSION ?= v0.7.0
6969
# renovate: datasource=go depName=github.com/golangci/golangci-lint
7070
GOLANGCILINT_VERSION ?= v1.61.0
7171
# renovate: datasource=go depName=golang.org/x/tools
72-
STRINGER_VERSION ?= v0.25.0
72+
STRINGER_VERSION ?= v0.26.0
7373
# renovate: datasource=go depName=github.com/dmarkham/enumer
7474
ENUMER_VERSION ?= v1.5.10
7575
# renovate: datasource=go depName=k8s.io/code-generator
@@ -85,9 +85,9 @@ PROTOTOOL_VERSION ?= v1.10.0
8585
# renovate: datasource=go depName=github.com/pseudomuto/protoc-gen-doc
8686
PROTOC_GEN_DOC_VERSION ?= v1.5.1
8787
# renovate: datasource=npm depName=markdownlint-cli
88-
MARKDOWNLINTCLI_VERSION ?= 0.40.0
88+
MARKDOWNLINTCLI_VERSION ?= 0.42.0
8989
# renovate: datasource=npm depName=textlint
90-
TEXTLINT_VERSION ?= 14.0.4
90+
TEXTLINT_VERSION ?= 14.2.1
9191
# renovate: datasource=npm depName=textlint-filter-rule-comments
9292
TEXTLINT_FILTER_RULE_COMMENTS_VERSION ?= 1.2.2
9393
# renovate: datasource=npm depName=textlint-rule-one-sentence-per-line
@@ -106,9 +106,9 @@ KUBECTL_VERSION ?= v1.31.1
106106
# renovate: datasource=github-releases depName=kastenhq/kubestr
107107
KUBESTR_VERSION ?= v0.4.46
108108
# renovate: datasource=github-releases depName=helm/helm
109-
HELM_VERSION ?= v3.15.4
109+
HELM_VERSION ?= v3.16.2
110110
# renovate: datasource=github-releases depName=cilium/cilium-cli
111-
CILIUM_CLI_VERSION ?= v0.16.16
111+
CILIUM_CLI_VERSION ?= v0.16.19
112112
# renovate: datasource=github-releases depName=microsoft/secureboot_objects
113113
MICROSOFT_SECUREBOOT_RELEASE ?= v1.1.3
114114

cmd/talosctl/cmd/talos/get.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,12 @@ func completeResourceDefinition(withAliases bool) ([]string, cobra.ShellCompDire
239239
return err
240240
}
241241

242-
for iter := items.Iterator(); iter.Next(); {
242+
for res := range items.All() {
243243
if withAliases {
244-
result = append(result, iter.Value().TypedSpec().Aliases...)
244+
result = append(result, res.TypedSpec().Aliases...)
245245
}
246246

247-
result = append(result, iter.Value().Metadata().ID())
247+
result = append(result, res.Metadata().ID())
248248
}
249249

250250
return nil
@@ -296,12 +296,12 @@ func CompleteNodes(*cobra.Command, []string, string) ([]string, cobra.ShellCompD
296296
return err
297297
}
298298

299-
for it := items.Iterator(); it.Next(); {
300-
if hostname := it.Value().TypedSpec().Hostname; hostname != "" {
299+
for res := range items.All() {
300+
if hostname := res.TypedSpec().Hostname; hostname != "" {
301301
nodes = append(nodes, hostname)
302302
}
303303

304-
for _, address := range it.Value().TypedSpec().Addresses {
304+
for _, address := range res.TypedSpec().Addresses {
305305
nodes = append(nodes, address.String())
306306
}
307307
}

go.mod

Lines changed: 40 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -53,33 +53,33 @@ require (
5353
)
5454

5555
require (
56-
cloud.google.com/go/compute/metadata v0.5.0
57-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0
58-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
56+
cloud.google.com/go/compute/metadata v0.5.2
57+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.15.0
58+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
5959
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.1.0
6060
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.1.0
6161
github.com/alexflint/go-filemutex v1.3.0
62-
github.com/aws/aws-sdk-go-v2/config v1.27.33
63-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13
64-
github.com/aws/aws-sdk-go-v2/service/kms v1.35.7
65-
github.com/aws/smithy-go v1.20.4
62+
github.com/aws/aws-sdk-go-v2/config v1.28.0
63+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17
64+
github.com/aws/aws-sdk-go-v2/service/kms v1.37.2
65+
github.com/aws/smithy-go v1.22.0
6666
github.com/beevik/ntp v1.4.3
6767
github.com/benbjohnson/clock v1.3.5 // project archived on 2023-05-18
6868
github.com/blang/semver/v4 v4.0.0
6969
github.com/cenkalti/backoff/v4 v4.3.0
7070
github.com/containerd/cgroups/v3 v3.0.3
7171
github.com/containerd/containerd/api v1.8.0-rc.3
72-
github.com/containerd/containerd/v2 v2.0.0-rc.4
72+
github.com/containerd/containerd/v2 v2.0.0-rc.5
7373
github.com/containerd/errdefs v0.1.0
7474
github.com/containerd/platforms v0.2.1
7575
github.com/containerd/typeurl/v2 v2.2.0
7676
github.com/containernetworking/cni v1.2.3
77-
github.com/containernetworking/plugins v1.5.1
77+
github.com/containernetworking/plugins v1.6.0
7878
github.com/coredns/coredns v1.11.3
7979
github.com/coreos/go-iptables v0.8.0
80-
github.com/cosi-project/runtime v0.5.5
80+
github.com/cosi-project/runtime v0.6.4
8181
github.com/distribution/reference v0.6.0
82-
github.com/docker/docker v27.2.0+incompatible
82+
github.com/docker/docker v27.3.1+incompatible
8383
github.com/docker/go-connections v0.5.0
8484
github.com/dustin/go-humanize v1.0.1
8585
github.com/ecks/uefi v0.0.0-20221116212947-caef65d070eb
@@ -97,7 +97,7 @@ require (
9797
github.com/google/go-tpm v0.9.1
9898
github.com/google/nftables v0.2.0
9999
github.com/google/uuid v1.6.0
100-
github.com/gopacket/gopacket v1.2.0
100+
github.com/gopacket/gopacket v1.3.0
101101
github.com/gosuri/uiprogress v0.0.1
102102
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
103103
github.com/hashicorp/go-cleanhttp v0.5.2
@@ -115,7 +115,7 @@ require (
115115
github.com/martinlindhe/base36 v1.1.1
116116
github.com/mattn/go-isatty v0.0.20
117117
github.com/mdlayher/arp v0.0.0-20220512170110-6706a2966875
118-
github.com/mdlayher/ethtool v0.1.0
118+
github.com/mdlayher/ethtool v0.2.0
119119
github.com/mdlayher/genetlink v1.3.2
120120
github.com/mdlayher/kobject v0.0.0-20200520190114-19ca17470d7d
121121
github.com/mdlayher/netlink v1.7.2
@@ -133,26 +133,26 @@ require (
133133
github.com/pkg/xattr v0.4.10
134134
github.com/pmorjan/kmod v1.1.1
135135
github.com/prometheus/procfs v0.15.1
136-
github.com/rivo/tview v0.0.0-20240818110301-fd649dbf1223
136+
github.com/rivo/tview v0.0.0-20241016194538-c5e4fb24af13
137137
github.com/rs/xid v1.6.0
138138
github.com/ryanuber/columnize v2.1.2+incompatible
139139
github.com/ryanuber/go-glob v1.0.0
140140
github.com/safchain/ethtool v0.4.1
141141
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30
142142
github.com/siderolabs/crypto v0.5.0
143143
github.com/siderolabs/discovery-api v0.1.4
144-
github.com/siderolabs/discovery-client v0.1.9
144+
github.com/siderolabs/discovery-client v0.1.10
145145
github.com/siderolabs/gen v0.5.0
146146
github.com/siderolabs/go-api-signature v0.3.6
147-
github.com/siderolabs/go-blockdevice v0.4.7
147+
github.com/siderolabs/go-blockdevice v0.4.8
148148
github.com/siderolabs/go-blockdevice/v2 v2.0.3
149149
github.com/siderolabs/go-circular v0.2.1
150150
github.com/siderolabs/go-cmd v0.1.1
151151
github.com/siderolabs/go-copy v0.1.0
152152
github.com/siderolabs/go-debug v0.4.0
153153
github.com/siderolabs/go-kmsg v0.1.4
154154
github.com/siderolabs/go-kubeconfig v0.1.0
155-
github.com/siderolabs/go-kubernetes v0.2.12
155+
github.com/siderolabs/go-kubernetes v0.2.13
156156
github.com/siderolabs/go-loadbalancer v0.3.4
157157
github.com/siderolabs/go-pcidb v0.3.0
158158
github.com/siderolabs/go-pointer v1.0.0
@@ -167,7 +167,7 @@ require (
167167
github.com/siderolabs/proto-codec v0.1.1
168168
github.com/siderolabs/protoenc v0.2.1
169169
github.com/siderolabs/siderolink v0.3.11
170-
github.com/siderolabs/talos/pkg/machinery v1.8.0-alpha.2
170+
github.com/siderolabs/talos/pkg/machinery v1.8.1
171171
github.com/spf13/cobra v1.8.1
172172
github.com/spf13/pflag v1.0.5
173173
github.com/stretchr/testify v1.9.0
@@ -209,24 +209,24 @@ require (
209209
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
210210
github.com/MakeNowJust/heredoc v1.0.0 // indirect
211211
github.com/Microsoft/go-winio v0.6.2 // indirect
212-
github.com/Microsoft/hcsshim v0.12.6 // indirect
212+
github.com/Microsoft/hcsshim v0.12.7 // indirect
213213
github.com/ProtonMail/go-crypto v1.1.0-alpha.5.0.20240827111422-b5837fa4476e // indirect
214214
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
215215
github.com/ProtonMail/gopenpgp/v2 v2.7.5 // indirect
216216
github.com/adrg/xdg v0.5.0 // indirect
217217
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
218218
github.com/apparentlymart/go-cidr v1.1.0 // indirect
219219
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect
220-
github.com/aws/aws-sdk-go-v2 v1.30.5 // indirect
221-
github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect
222-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect
223-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect
220+
github.com/aws/aws-sdk-go-v2 v1.32.2 // indirect
221+
github.com/aws/aws-sdk-go-v2/credentials v1.17.41 // indirect
222+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect
223+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect
224224
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
225-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
226-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect
227-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect
228-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect
229-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect
225+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
226+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.2 // indirect
227+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.2 // indirect
228+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.2 // indirect
229+
github.com/aws/aws-sdk-go-v2/service/sts v1.32.2 // indirect
230230
github.com/beorn7/perks v1.0.1 // indirect
231231
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
232232
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -321,12 +321,12 @@ require (
321321
github.com/opencontainers/selinux v1.11.0 // indirect
322322
github.com/opentracing/opentracing-go v1.2.0 // indirect
323323
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
324-
github.com/pierrec/lz4/v4 v4.1.18 // indirect
324+
github.com/pierrec/lz4/v4 v4.1.21 // indirect
325325
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
326326
github.com/pkg/errors v0.9.1 // indirect
327327
github.com/planetscale/vtprotobuf v0.6.1-0.20240917153116-6f2963f01587 // indirect
328328
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
329-
github.com/prometheus/client_golang v1.20.1 // indirect
329+
github.com/prometheus/client_golang v1.20.4 // indirect
330330
github.com/prometheus/client_model v0.6.1 // indirect
331331
github.com/prometheus/common v0.55.0 // indirect
332332
github.com/rivo/uniseg v0.4.7 // indirect
@@ -336,7 +336,7 @@ require (
336336
github.com/spf13/afero v1.10.0 // indirect
337337
github.com/stoewer/go-strcase v1.3.0 // indirect
338338
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
339-
github.com/u-root/uio v0.0.0-20240209044354-b3d14b93376a // indirect
339+
github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701 // indirect
340340
github.com/vbatts/tar-split v0.11.3 // indirect
341341
github.com/vishvananda/netns v0.0.4 // indirect
342342
github.com/x448/float16 v0.8.4 // indirect
@@ -348,21 +348,21 @@ require (
348348
go.etcd.io/etcd/raft/v3 v3.5.16 // indirect
349349
go.etcd.io/etcd/server/v3 v3.5.16 // indirect
350350
go.opencensus.io v0.24.0 // indirect
351-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
352-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
353-
go.opentelemetry.io/otel v1.28.0 // indirect
354-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
355-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
351+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect
352+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect
353+
go.opentelemetry.io/otel v1.30.0 // indirect
354+
go.opentelemetry.io/otel/metric v1.30.0 // indirect
355+
go.opentelemetry.io/otel/trace v1.30.0 // indirect
356356
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
357357
go.uber.org/multierr v1.11.0 // indirect
358358
golang.org/x/crypto v0.28.0 // indirect
359359
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
360-
golang.org/x/mod v0.20.0 // indirect
360+
golang.org/x/mod v0.21.0 // indirect
361361
golang.org/x/tools v0.24.0 // indirect
362362
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
363363
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
364-
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
365-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect
364+
google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53 // indirect
365+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
366366
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
367367
gopkg.in/inf.v0 v0.9.1 // indirect
368368
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -372,6 +372,7 @@ require (
372372
kernel.org/pub/linux/libs/security/libcap/psx v1.2.70 // indirect
373373
rsc.io/qr v0.2.0 // indirect
374374
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
375+
sigs.k8s.io/knftables v0.0.17 // indirect
375376
sigs.k8s.io/kustomize/api v0.17.2 // indirect
376377
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
377378
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)