Skip to content

Commit 24ca629

Browse files
committed
feat: update Talos to 1.9.0 final
Update CAPI to 1.9.0. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent d9f0c5f commit 24ca629

File tree

6 files changed

+128
-117
lines changed

6 files changed

+128
-117
lines changed

.github/renovate.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"description": "THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.",
4+
"prHeader": "Update Request | Renovate Bot",
5+
"extends": [
6+
":dependencyDashboard",
7+
":gitSignOff",
8+
":semanticCommitScopeDisabled",
9+
"schedule:earlyMondays"
10+
],
11+
"packageRules": [
12+
{
13+
"groupName": "dependencies",
14+
"matchUpdateTypes": [
15+
"major",
16+
"minor",
17+
"patch",
18+
"pin",
19+
"digest"
20+
]
21+
}
22+
],
23+
"separateMajorMinor": false
24+
}

.golangci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-12-04T11:31:51Z by kres 232fe63.
3+
# Generated on 2024-12-17T15:03:06Z by kres b9507d6.
44

55
# options for analysis running
66
run:
@@ -134,6 +134,7 @@ linters:
134134
- perfsprint # complains about us using fmt.Sprintf in non-performance critical code, updating just kres took too long
135135
- goimports # same as gci
136136
- musttag # seems to be broken - goes into imported libraries and reports issues there
137+
- exportloopref # WARN The linter 'exportloopref' is deprecated (since v1.60.2) due to: Since Go1.22 (loopvar) this linter is no longer relevant. Replaced by copyloopvar.
137138

138139
issues:
139140
exclude: [ ]

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
# syntax = docker/dockerfile-upstream:1.11.1-labs
1+
# syntax = docker/dockerfile-upstream:1.12.0-labs
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2024-12-04T11:31:51Z by kres 232fe63.
5+
# Generated on 2024-12-17T15:03:06Z by kres b9507d6.
66

77
ARG TOOLCHAIN
88

99
# cleaned up specs and compiled versions
1010
FROM scratch AS generate
1111

12-
FROM ghcr.io/siderolabs/ca-certificates:v1.8.0 AS image-ca-certificates
12+
FROM ghcr.io/siderolabs/ca-certificates:v1.9.0 AS image-ca-certificates
1313

14-
FROM ghcr.io/siderolabs/fhs:v1.8.0 AS image-fhs
14+
FROM ghcr.io/siderolabs/fhs:v1.9.0 AS image-fhs
1515

1616
# runs markdownlint
17-
FROM docker.io/oven/bun:1.1.36-alpine AS lint-markdown
17+
FROM docker.io/oven/bun:1.1.38-alpine AS lint-markdown
1818
WORKDIR /src
19-
RUN bun i [email protected] sentences-per-line@0.2.1
19+
RUN bun i [email protected] sentences-per-line@0.3.0
2020
COPY .markdownlint.json .
2121
COPY ./README.md ./README.md
22-
RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules node_modules/sentences-per-line/index.js .
22+
RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules sentences-per-line .
2323

2424
# base toolchain image
2525
FROM --platform=${BUILDPLATFORM} ${TOOLCHAIN} AS toolchain

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-12-04T11:31:51Z by kres 232fe63.
3+
# Generated on 2024-12-17T15:03:06Z by kres b9507d6.
44

55
# common variables
66

@@ -21,11 +21,11 @@ PROTOBUF_GO_VERSION ?= 1.35.2
2121
GRPC_GO_VERSION ?= 1.5.1
2222
GRPC_GATEWAY_VERSION ?= 2.24.0
2323
VTPROTOBUF_VERSION ?= 0.6.0
24-
GOIMPORTS_VERSION ?= 0.27.0
24+
GOIMPORTS_VERSION ?= 0.28.0
2525
DEEPCOPY_VERSION ?= v0.5.6
26-
GOLANGCILINT_VERSION ?= v1.62.0
26+
GOLANGCILINT_VERSION ?= v1.62.2
2727
GOFUMPT_VERSION ?= v0.7.0
28-
GO_VERSION ?= 1.23.3
28+
GO_VERSION ?= 1.23.4
2929
GO_BUILDFLAGS ?=
3030
GO_LDFLAGS ?=
3131
CGO_ENABLED ?= 0
@@ -152,7 +152,7 @@ local-%: ## Builds the specified target defined in the Dockerfile using the loc
152152
echo $$platform; \
153153
directory="$${platform//\//_}"; \
154154
if [[ -d "$$DEST/$$directory" ]]; then \
155-
mv "$$DEST/$$directory/"* $$DEST; \
155+
mv -f "$$DEST/$$directory/"* $$DEST; \
156156
rmdir "$$DEST/$$directory/"; \
157157
fi; \
158158
done'

go.mod

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,24 @@ go 1.23.3
55
require (
66
github.com/siderolabs/go-debug v0.4.0
77
github.com/siderolabs/go-retry v0.3.3
8-
github.com/siderolabs/talos/pkg/machinery v1.9.0-beta.0
8+
github.com/siderolabs/talos/pkg/machinery v1.9.0
99
github.com/spf13/cobra v1.8.1
1010
github.com/spf13/viper v1.19.0
11-
google.golang.org/grpc v1.68.0
11+
google.golang.org/grpc v1.68.1
1212
k8s.io/api v0.31.3
1313
k8s.io/apimachinery v0.31.3
1414
k8s.io/client-go v0.31.3
15-
sigs.k8s.io/cluster-api v1.8.5
15+
sigs.k8s.io/cluster-api v1.9.0
1616
sigs.k8s.io/controller-runtime v0.19.3
1717
)
1818

1919
require (
2020
cel.dev/expr v0.18.0 // indirect
21+
dario.cat/mergo v1.0.1 // indirect
2122
github.com/MakeNowJust/heredoc v1.0.0 // indirect
2223
github.com/Masterminds/goutils v1.1.1 // indirect
23-
github.com/Masterminds/semver/v3 v3.2.0 // indirect
24-
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
24+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
25+
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
2526
github.com/ProtonMail/go-crypto v1.1.3 // indirect
2627
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
2728
github.com/ProtonMail/gopenpgp/v2 v2.8.1 // indirect
@@ -35,7 +36,7 @@ require (
3536
github.com/cloudflare/circl v1.5.0 // indirect
3637
github.com/containerd/go-cni v1.1.10 // indirect
3738
github.com/containernetworking/cni v1.2.3 // indirect
38-
github.com/cosi-project/runtime v0.7.2 // indirect
39+
github.com/cosi-project/runtime v0.7.6 // indirect
3940
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4041
github.com/distribution/reference v0.6.0 // indirect
4142
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
@@ -50,7 +51,7 @@ require (
5051
github.com/go-openapi/jsonpointer v0.19.6 // indirect
5152
github.com/go-openapi/jsonreference v0.20.2 // indirect
5253
github.com/go-openapi/swag v0.22.4 // indirect
53-
github.com/gobuffalo/flect v1.0.2 // indirect
54+
github.com/gobuffalo/flect v1.0.3 // indirect
5455
github.com/gogo/protobuf v1.3.2 // indirect
5556
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5657
github.com/golang/protobuf v1.5.4 // indirect
@@ -65,7 +66,7 @@ require (
6566
github.com/hashicorp/errwrap v1.1.0 // indirect
6667
github.com/hashicorp/go-multierror v1.1.1 // indirect
6768
github.com/hashicorp/hcl v1.0.0 // indirect
68-
github.com/huandu/xstrings v1.3.3 // indirect
69+
github.com/huandu/xstrings v1.5.0 // indirect
6970
github.com/imdario/mergo v0.3.13 // indirect
7071
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7172
github.com/josharian/intern v1.0.0 // indirect
@@ -78,7 +79,7 @@ require (
7879
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7980
github.com/modern-go/reflect2 v1.0.2 // indirect
8081
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
81-
github.com/onsi/gomega v1.34.0 // indirect
82+
github.com/onsi/gomega v1.36.0 // indirect
8283
github.com/opencontainers/go-digest v1.0.0 // indirect
8384
github.com/opencontainers/runtime-spec v1.2.0 // indirect
8485
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
@@ -91,15 +92,15 @@ require (
9192
github.com/prometheus/procfs v0.15.1 // indirect
9293
github.com/sagikazarmark/locafero v0.4.0 // indirect
9394
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
94-
github.com/shopspring/decimal v1.3.1 // indirect
95+
github.com/shopspring/decimal v1.4.0 // indirect
9596
github.com/siderolabs/crypto v0.5.0 // indirect
9697
github.com/siderolabs/gen v0.7.0 // indirect
9798
github.com/siderolabs/go-api-signature v0.3.6 // indirect
9899
github.com/siderolabs/go-pointer v1.0.0 // indirect
99100
github.com/siderolabs/protoenc v0.2.1 // indirect
100101
github.com/sourcegraph/conc v0.3.0 // indirect
101102
github.com/spf13/afero v1.11.0 // indirect
102-
github.com/spf13/cast v1.6.0 // indirect
103+
github.com/spf13/cast v1.7.0 // indirect
103104
github.com/spf13/pflag v1.0.5 // indirect
104105
github.com/stoewer/go-strcase v1.3.0 // indirect
105106
github.com/subosito/gotenv v1.6.0 // indirect
@@ -115,28 +116,28 @@ require (
115116
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
116117
go.uber.org/multierr v1.11.0 // indirect
117118
go.uber.org/zap v1.27.0 // indirect
118-
golang.org/x/crypto v0.29.0 // indirect
119+
golang.org/x/crypto v0.30.0 // indirect
119120
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
120-
golang.org/x/net v0.31.0 // indirect
121+
golang.org/x/net v0.32.0 // indirect
121122
golang.org/x/oauth2 v0.24.0 // indirect
122-
golang.org/x/sync v0.9.0 // indirect
123-
golang.org/x/sys v0.27.0 // indirect
124-
golang.org/x/term v0.26.0 // indirect
125-
golang.org/x/text v0.20.0 // indirect
123+
golang.org/x/sync v0.10.0 // indirect
124+
golang.org/x/sys v0.28.0 // indirect
125+
golang.org/x/term v0.27.0 // indirect
126+
golang.org/x/text v0.21.0 // indirect
126127
golang.org/x/time v0.8.0 // indirect
127128
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
128-
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
129-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
129+
google.golang.org/genproto/googleapis/api v0.0.0-20241206012308-a4fef0638583 // indirect
130+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241206012308-a4fef0638583 // indirect
130131
google.golang.org/protobuf v1.35.2 // indirect
131132
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
132133
gopkg.in/inf.v0 v0.9.1 // indirect
133134
gopkg.in/ini.v1 v1.67.0 // indirect
134135
gopkg.in/yaml.v2 v2.4.0 // indirect
135136
gopkg.in/yaml.v3 v3.0.1 // indirect
136-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
137-
k8s.io/apiserver v0.31.0 // indirect
138-
k8s.io/cluster-bootstrap v0.30.3 // indirect
139-
k8s.io/component-base v0.31.0 // indirect
137+
k8s.io/apiextensions-apiserver v0.31.3 // indirect
138+
k8s.io/apiserver v0.31.3 // indirect
139+
k8s.io/cluster-bootstrap v0.31.3 // indirect
140+
k8s.io/component-base v0.31.3 // indirect
140141
k8s.io/klog/v2 v2.130.1 // indirect
141142
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
142143
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect

0 commit comments

Comments
 (0)