Skip to content

Commit 61f2a5d

Browse files
committed
chore: rekres, bump deps
Rekres and bump all deps. Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
1 parent f303b3f commit 61f2a5d

File tree

7 files changed

+142
-218
lines changed

7 files changed

+142
-218
lines changed

.conform.yaml

Lines changed: 2 additions & 2 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-10-14T09:32:55Z by kres 34e72ac.
3+
# Generated on 2025-11-17T13:17:47Z by kres e1d6dac.
44

55
policies:
66
- type: commit
@@ -12,7 +12,7 @@ policies:
1212
gitHubOrganization: siderolabs
1313
spellcheck:
1414
locale: US
15-
maximumOfOneCommit: true
15+
maximumOfOneCommit: false
1616
header:
1717
length: 89
1818
imperative: true

.dockerignore

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 2025-08-26T08:02:11Z by kres 6262116.
3+
# Generated on 2025-11-17T13:17:47Z by kres e1d6dac.
44

55
*
66
!api
@@ -9,6 +9,7 @@
99
!go.mod
1010
!go.sum
1111
!.golangci.yml
12+
!CHANGELOG.md
1213
!README.md
1314
!.markdownlint.json
1415
!hack/govulncheck.sh

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2025-10-15T12:08:56Z by kres d315fc0.
5+
# Generated on 2025-11-17T13:17:47Z by kres e1d6dac.
66

7-
ARG TOOLCHAIN
7+
ARG TOOLCHAIN=scratch
88

99
FROM ghcr.io/siderolabs/talos-metal-agent-boot-assets:v1.9.6-agent-v0.1.3 AS assets
1010

@@ -21,10 +21,11 @@ FROM --platform=linux/arm64 ghcr.io/siderolabs/ipxe:v1.11.0 AS ipxe-linux-arm64
2121
FROM ghcr.io/siderolabs/liblzma:v1.11.0 AS liblzma
2222

2323
# runs markdownlint
24-
FROM docker.io/oven/bun:1.3.0-alpine AS lint-markdown
24+
FROM docker.io/oven/bun:1.3.1-alpine AS lint-markdown
2525
WORKDIR /src
2626
RUN bun i markdownlint-cli@0.45.0 sentences-per-line@0.3.0
2727
COPY .markdownlint.json .
28+
COPY ./CHANGELOG.md ./CHANGELOG.md
2829
COPY ./README.md ./README.md
2930
RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules sentences-per-line .
3031

Makefile

Lines changed: 4 additions & 4 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 2025-10-15T12:08:56Z by kres d315fc0.
3+
# Generated on 2025-11-17T13:17:47Z by kres e1d6dac.
44

55
# common variables
66

@@ -24,9 +24,9 @@ VTPROTOBUF_VERSION ?= 0.6.0
2424
GOIMPORTS_VERSION ?= 0.38.0
2525
GOMOCK_VERSION ?= 0.6.0
2626
DEEPCOPY_VERSION ?= v0.5.8
27-
GOLANGCILINT_VERSION ?= v2.5.0
28-
GOFUMPT_VERSION ?= v0.9.1
29-
GO_VERSION ?= 1.25.3
27+
GOLANGCILINT_VERSION ?= v2.6.1
28+
GOFUMPT_VERSION ?= v0.9.2
29+
GO_VERSION ?= 1.25.4
3030
GO_BUILDFLAGS ?=
3131
GO_LDFLAGS ?=
3232
CGO_ENABLED ?= 0

go.mod

Lines changed: 39 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
module github.com/siderolabs/omni-infra-provider-bare-metal
22

3-
go 1.25.3
3+
go 1.25.4
44

55
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
66
// which are then encoded as a valid YAML blocks with proper indentiation
77
replace gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c
88

99
require (
1010
github.com/bougou/go-ipmi v0.7.8
11-
github.com/cosi-project/runtime v1.11.0
11+
github.com/cosi-project/runtime v1.12.0
1212
github.com/google/uuid v1.6.0
13-
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2
13+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3
1414
github.com/hashicorp/go-multierror v1.1.1
15-
github.com/insomniacslk/dhcp v0.0.0-20251007151141-da879a2c3546
15+
github.com/insomniacslk/dhcp v0.0.0-20251020182700-175e84fbb167
1616
github.com/jhump/grpctunnel v0.3.0
17-
github.com/klauspost/compress v1.18.0
17+
github.com/klauspost/compress v1.18.1
1818
github.com/pin/tftp/v3 v3.1.1-0.20250927050551-17016b3c2849
1919
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2
2020
github.com/siderolabs/crypto v0.6.4
21-
github.com/siderolabs/gen v0.8.5
21+
github.com/siderolabs/gen v0.8.6
2222
github.com/siderolabs/image-factory v0.8.4
2323
github.com/siderolabs/net v0.4.0
24-
github.com/siderolabs/omni/client v1.2.1
25-
github.com/siderolabs/talos v1.11.3
24+
github.com/siderolabs/omni/client v1.3.2
25+
github.com/siderolabs/talos v1.11.5
2626
github.com/siderolabs/talos-metal-agent v0.1.3
27-
github.com/siderolabs/talos/pkg/machinery v1.11.3
27+
github.com/siderolabs/talos/pkg/machinery v1.12.0-beta.0
2828
github.com/spf13/cobra v1.10.1
2929
github.com/stmcginnis/gofish v0.20.0
3030
github.com/stretchr/testify v1.11.1
3131
go.uber.org/zap v1.27.0
32-
golang.org/x/net v0.46.0
33-
golang.org/x/sync v0.17.0
32+
golang.org/x/net v0.47.0
33+
golang.org/x/sync v0.18.0
3434
google.golang.org/grpc v1.76.0
3535
google.golang.org/protobuf v1.36.10
3636
)
3737

3838
require (
39-
cel.dev/expr v0.24.0 // indirect
39+
cel.dev/expr v0.25.1 // indirect
4040
github.com/Microsoft/go-winio v0.6.2 // indirect
4141
github.com/ProtonMail/go-crypto v1.3.0 // indirect
4242
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
@@ -48,19 +48,21 @@ require (
4848
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
4949
github.com/blang/semver/v4 v4.0.0 // indirect
5050
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
51-
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
51+
github.com/clipperhouse/displaywidth v0.6.0 // indirect
52+
github.com/clipperhouse/stringish v0.1.1 // indirect
53+
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
5254
github.com/cloudflare/circl v1.6.1 // indirect
5355
github.com/containerd/errdefs v1.0.0 // indirect
5456
github.com/containerd/errdefs/pkg v0.3.0 // indirect
5557
github.com/containerd/go-cni v1.1.13 // indirect
56-
github.com/containerd/stargz-snapshotter/estargz v0.18.0 // indirect
58+
github.com/containerd/stargz-snapshotter/estargz v0.18.1 // indirect
5759
github.com/containernetworking/cni v1.3.0 // indirect
5860
github.com/containernetworking/plugins v1.8.0 // indirect
5961
github.com/coreos/go-iptables v0.8.0 // indirect
6062
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
6163
github.com/detailyang/go-fallocate v0.0.0-20180908115635-432fa640bd2e // indirect
6264
github.com/distribution/reference v0.6.0 // indirect
63-
github.com/docker/docker v28.5.1+incompatible // indirect
65+
github.com/docker/docker v28.5.2+incompatible // indirect
6466
github.com/docker/go-connections v0.6.0 // indirect
6567
github.com/docker/go-units v0.5.0 // indirect
6668
github.com/dustin/go-humanize v1.0.1 // indirect
@@ -69,13 +71,13 @@ require (
6971
github.com/fatih/color v1.18.0 // indirect
7072
github.com/felixge/httpsnoop v1.0.4 // indirect
7173
github.com/florianl/go-tc v0.4.7 // indirect
72-
github.com/fullstorydev/grpchan v1.1.1 // indirect
74+
github.com/fullstorydev/grpchan v1.1.2 // indirect
7375
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
7476
github.com/gertd/go-pluralize v0.2.1 // indirect
7577
github.com/go-logr/logr v1.4.3 // indirect
7678
github.com/go-logr/stdr v1.2.2 // indirect
77-
github.com/go-openapi/jsonpointer v0.22.1 // indirect
78-
github.com/go-openapi/jsonreference v0.21.2 // indirect
79+
github.com/go-openapi/jsonpointer v0.22.2 // indirect
80+
github.com/go-openapi/jsonreference v0.21.3 // indirect
7981
github.com/go-openapi/swag v0.25.1 // indirect
8082
github.com/go-openapi/swag/cmdutils v0.25.1 // indirect
8183
github.com/go-openapi/swag/conv v0.25.1 // indirect
@@ -88,7 +90,6 @@ require (
8890
github.com/go-openapi/swag/stringutils v0.25.1 // indirect
8991
github.com/go-openapi/swag/typeutils v0.25.1 // indirect
9092
github.com/go-openapi/swag/yamlutils v0.25.1 // indirect
91-
github.com/gogo/protobuf v1.3.2 // indirect
9293
github.com/google/cel-go v0.26.1 // indirect
9394
github.com/google/gnostic-models v0.7.0 // indirect
9495
github.com/google/go-cmp v0.7.0 // indirect
@@ -101,7 +102,7 @@ require (
101102
github.com/hashicorp/go-version v1.7.0 // indirect
102103
github.com/inconshreveable/mousetrap v1.1.0 // indirect
103104
github.com/josharian/native v1.1.0 // indirect
104-
github.com/jsimonetti/rtnetlink/v2 v2.0.5 // indirect
105+
github.com/jsimonetti/rtnetlink/v2 v2.1.0 // indirect
105106
github.com/json-iterator/go v1.1.12 // indirect
106107
github.com/jxskiss/base62 v1.1.0 // indirect
107108
github.com/kr/pretty v0.3.1 // indirect
@@ -122,27 +123,26 @@ require (
122123
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
123124
github.com/olekukonko/errors v1.1.0 // indirect
124125
github.com/olekukonko/ll v0.1.2 // indirect
125-
github.com/olekukonko/tablewriter v1.1.0 // indirect
126+
github.com/olekukonko/tablewriter v1.1.2-0.20251112234822-2440ec1572ef // indirect
126127
github.com/opencontainers/go-digest v1.0.0 // indirect
127128
github.com/opencontainers/image-spec v1.1.1 // indirect
128-
github.com/opencontainers/runtime-spec v1.2.1 // indirect
129+
github.com/opencontainers/runtime-spec v1.3.0 // indirect
129130
github.com/petermattis/goid v0.0.0-20250904145737-900bdf8bb490 // indirect
130131
github.com/pierrec/lz4/v4 v4.1.22 // indirect
131132
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
132133
github.com/pkg/errors v0.9.1 // indirect
133134
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
134-
github.com/rivo/uniseg v0.4.7 // indirect
135135
github.com/rogpeppe/go-internal v1.14.1 // indirect
136136
github.com/ryanuber/go-glob v1.0.0 // indirect
137137
github.com/sasha-s/go-deadlock v0.3.6 // indirect
138-
github.com/siderolabs/go-api-signature v0.3.9 // indirect
139-
github.com/siderolabs/go-blockdevice/v2 v2.0.19 // indirect
138+
github.com/siderolabs/go-api-signature v0.3.12 // indirect
139+
github.com/siderolabs/go-blockdevice/v2 v2.0.20 // indirect
140140
github.com/siderolabs/go-cmd v0.1.3 // indirect
141-
github.com/siderolabs/go-kubernetes v0.2.26 // indirect
141+
github.com/siderolabs/go-kubernetes v0.2.27 // indirect
142142
github.com/siderolabs/go-pointer v1.0.1 // indirect
143143
github.com/siderolabs/go-procfs v0.1.2 // indirect
144144
github.com/siderolabs/go-retry v0.3.3 // indirect
145-
github.com/siderolabs/go-talos-support v0.1.2 // indirect
145+
github.com/siderolabs/go-talos-support v0.1.4 // indirect
146146
github.com/siderolabs/proto-codec v0.1.2 // indirect
147147
github.com/siderolabs/protoenc v0.2.4 // indirect
148148
github.com/siderolabs/siderolink v0.3.15 // indirect
@@ -164,25 +164,26 @@ require (
164164
go.uber.org/multierr v1.11.0 // indirect
165165
go.yaml.in/yaml/v2 v2.4.3 // indirect
166166
go.yaml.in/yaml/v3 v3.0.4 // indirect
167+
go.yaml.in/yaml/v4 v4.0.0-rc.3 // indirect
167168
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
168-
golang.org/x/crypto v0.43.0 // indirect
169-
golang.org/x/exp v0.0.0-20251009144603-d2f985daa21b // indirect
170-
golang.org/x/oauth2 v0.32.0 // indirect
171-
golang.org/x/sys v0.37.0 // indirect
172-
golang.org/x/term v0.36.0 // indirect
173-
golang.org/x/text v0.30.0 // indirect
169+
golang.org/x/crypto v0.44.0 // indirect
170+
golang.org/x/exp v0.0.0-20251113190631-e25ba8c21ef6 // indirect
171+
golang.org/x/oauth2 v0.33.0 // indirect
172+
golang.org/x/sys v0.38.0 // indirect
173+
golang.org/x/term v0.37.0 // indirect
174+
golang.org/x/text v0.31.0 // indirect
174175
golang.org/x/time v0.14.0 // indirect
175176
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
176177
golang.zx2c4.com/wireguard v0.0.0-20250521234502-f333402bd9cb // indirect
177178
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20241231184526-a9ab2273dd10 // indirect
178-
google.golang.org/genproto/googleapis/api v0.0.0-20251014184007-4626949a642f // indirect
179-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251014184007-4626949a642f // indirect
179+
google.golang.org/genproto/googleapis/api v0.0.0-20251111163417-95abcf5c77ba // indirect
180+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251111163417-95abcf5c77ba // indirect
180181
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
181182
gopkg.in/inf.v0 v0.9.1 // indirect
182183
gopkg.in/yaml.v3 v3.0.3 // indirect
183-
k8s.io/api v0.35.0-alpha.1 // indirect
184-
k8s.io/apimachinery v0.35.0-alpha.1 // indirect
185-
k8s.io/client-go v0.35.0-alpha.1 // indirect
184+
k8s.io/api v0.35.0-alpha.3 // indirect
185+
k8s.io/apimachinery v0.35.0-alpha.3 // indirect
186+
k8s.io/client-go v0.35.0-alpha.3 // indirect
186187
k8s.io/klog/v2 v2.130.1 // indirect
187188
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
188189
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect

0 commit comments

Comments
 (0)