Skip to content

Commit d3adcdb

Browse files
committed
chore: bump dependencies
Prepare for the next v0.6 release, clean up compatibility matrix. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 6c9d018 commit d3adcdb

File tree

4 files changed

+82
-90
lines changed

4 files changed

+82
-90
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ NAME := cluster-api-talos-controller
99
ARTIFACTS := _out
1010
TEST_RUN ?= ./...
1111

12-
TOOLS ?= ghcr.io/siderolabs/tools:v1.3.0-1-g712379c
13-
PKGS ?= v1.3.0
14-
TALOS_VERSION ?= v1.3.0
15-
K8S_VERSION ?= 1.26.0
12+
TOOLS ?= ghcr.io/siderolabs/tools:v1.4.0-alpha.0-26-g2d710f9
13+
PKGS ?= v1.4.0-alpha.0-36-g5d77814
14+
TALOS_VERSION ?= v1.4.0-alpha.3
15+
K8S_VERSION ?= 1.27.0-rc.0
1616

1717
CONTROLLER_GEN_VERSION ?= v0.10.0
1818
CONVERSION_GEN_VERSION ?= v0.25.0

README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,22 @@ This provider's versions are compatible with the following versions of Cluster A
4949

5050
| | v1alpha3 (v0.3) | v1alpha4 (v0.4) | v1beta1 (v1.x) |
5151
| -------------- | --------------- | --------------- | -------------- |
52-
| CABPT (v0.3.x) || | |
53-
| CABPT (v0.4.x) | || |
5452
| CABPT (v0.5.x) | | ||
53+
| CABPT (v0.6.x) | | ||
5554

5655
This provider's versions are able to install and manage the following versions of Kubernetes:
5756
58-
| | v1.16 | v 1.17 | v1.18 | v1.19 | v1.20 | v1.21 | v1.22 | v1.23 | v1.24 | v1.25 | v1.26 |
59-
| -------------- | ----- | ------ | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- |
60-
| CABPT (v0.3.x) | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | | | |
61-
| CABPT (v0.4.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
62-
| CABPT (v0.5.x) | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
57+
| | v1.19 | v1.20 | v1.21 | v1.22 | v1.23 | v1.24 | v1.25 | v1.26 | v1.27 |
58+
| -------------- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- |
59+
| CABPT (v0.5.x) | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | |
60+
| CABPT (v0.6.x) | | | | | | ✓ | ✓ | ✓ | ✓ |
6361
6462
This provider's versions are compatible with the following versions of Talos:
6563

66-
| | v0.11 | v0.12 | v0.13 | v0.14 | v1.0 | v1.1 | v1.2 | v1.3 |
67-
| ---------------- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- |
68-
| CABPT (v0.3.x) |||| | | | | |
69-
| CABPT (v0.4.x) ||||| | | | |
70-
| CABPT (v0.5.x) |||||||||
64+
| | v1.0 | v1.1 | v1.2 | v1.3 | v1.4 |
65+
| ---------------- | ----- | ----- | ----- | ----- | ----- |
66+
| CABPT (v0.5.x) ||||| |
67+
| CABPT (v0.6.x) | | ||||
7168

7269
CABPT generates machine configuration compatible with Talos version specified in the `talosVersion:` field (see below).
7370

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
module github.com/siderolabs/cluster-api-bootstrap-provider-talos
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/evanphx/json-patch v5.6.0+incompatible
77
github.com/go-logr/logr v1.2.3
88
github.com/google/go-cmp v0.5.9
99
github.com/siderolabs/crypto v0.4.0
1010
github.com/siderolabs/go-pointer v1.0.0
11-
github.com/siderolabs/talos/pkg/machinery v1.3.0
11+
github.com/siderolabs/talos/pkg/machinery v1.4.0-alpha.3
1212
github.com/spf13/pflag v1.0.5
13-
github.com/stretchr/testify v1.8.1
14-
golang.org/x/sys v0.3.0
13+
github.com/stretchr/testify v1.8.2
14+
golang.org/x/sys v0.6.0
1515
gopkg.in/yaml.v2 v2.4.0
1616
k8s.io/api v0.25.0
1717
k8s.io/apiextensions-apiserver v0.25.0
1818
k8s.io/apimachinery v0.25.0
1919
k8s.io/client-go v0.25.0
20-
sigs.k8s.io/cluster-api v1.3.1
20+
sigs.k8s.io/cluster-api v1.3.5
2121
sigs.k8s.io/controller-runtime v0.13.1
2222
)
2323

@@ -32,14 +32,14 @@ require (
3232
github.com/blang/semver v3.5.1+incompatible // indirect
3333
github.com/blang/semver/v4 v4.0.0 // indirect
3434
github.com/cespare/xxhash/v2 v2.1.2 // indirect
35-
github.com/containerd/go-cni v1.1.7 // indirect
35+
github.com/containerd/go-cni v1.1.9 // indirect
3636
github.com/containernetworking/cni v1.1.2 // indirect
3737
github.com/coredns/caddy v1.1.0 // indirect
38-
github.com/coredns/corefile-migration v1.0.18 // indirect
38+
github.com/coredns/corefile-migration v1.0.20 // indirect
3939
github.com/davecgh/go-spew v1.1.1 // indirect
4040
github.com/docker/distribution v2.8.1+incompatible // indirect
4141
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
42-
github.com/dustin/go-humanize v1.0.0 // indirect
42+
github.com/dustin/go-humanize v1.0.1 // indirect
4343
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
4444
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
4545
github.com/fsnotify/fsnotify v1.6.0 // indirect
@@ -51,7 +51,7 @@ require (
5151
github.com/gobuffalo/flect v0.3.0 // indirect
5252
github.com/gogo/protobuf v1.3.2 // indirect
5353
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
54-
github.com/golang/protobuf v1.5.2 // indirect
54+
github.com/golang/protobuf v1.5.3 // indirect
5555
github.com/google/cel-go v0.12.4 // indirect
5656
github.com/google/gnostic v0.6.9 // indirect
5757
github.com/google/go-github/v45 v45.2.0 // indirect
@@ -65,14 +65,14 @@ require (
6565
github.com/imdario/mergo v0.3.13 // indirect
6666
github.com/josharian/intern v1.0.0 // indirect
6767
github.com/josharian/native v1.0.0 // indirect
68-
github.com/jsimonetti/rtnetlink v1.3.0 // indirect
68+
github.com/jsimonetti/rtnetlink v1.3.1 // indirect
6969
github.com/json-iterator/go v1.1.12 // indirect
7070
github.com/magiconair/properties v1.8.6 // indirect
7171
github.com/mailru/easyjson v0.7.7 // indirect
7272
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
73-
github.com/mdlayher/ethtool v0.0.0-20220830195143-0e16326d06d1 // indirect
74-
github.com/mdlayher/genetlink v1.2.0 // indirect
75-
github.com/mdlayher/netlink v1.7.0 // indirect
73+
github.com/mdlayher/ethtool v0.0.0-20221212131811-ba3b4bc2e02c // indirect
74+
github.com/mdlayher/genetlink v1.3.1 // indirect
75+
github.com/mdlayher/netlink v1.7.1 // indirect
7676
github.com/mdlayher/socket v0.4.0 // indirect
7777
github.com/mitchellh/copystructure v1.2.0 // indirect
7878
github.com/mitchellh/mapstructure v1.5.0 // indirect
@@ -93,8 +93,8 @@ require (
9393
github.com/prometheus/procfs v0.8.0 // indirect
9494
github.com/ryanuber/go-glob v1.0.0 // indirect
9595
github.com/shopspring/decimal v1.3.1 // indirect
96-
github.com/siderolabs/gen v0.4.1 // indirect
97-
github.com/siderolabs/go-blockdevice v0.4.1 // indirect
96+
github.com/siderolabs/gen v0.4.3 // indirect
97+
github.com/siderolabs/go-blockdevice v0.4.3 // indirect
9898
github.com/siderolabs/go-debug v0.2.2 // indirect
9999
github.com/siderolabs/net v0.4.0 // indirect
100100
github.com/spf13/afero v1.9.2 // indirect
@@ -106,18 +106,18 @@ require (
106106
github.com/valyala/fastjson v1.6.3 // indirect
107107
go.uber.org/atomic v1.10.0 // indirect
108108
go.uber.org/multierr v1.8.0 // indirect
109-
go.uber.org/zap v1.23.0 // indirect
109+
go.uber.org/zap v1.24.0 // indirect
110110
golang.org/x/crypto v0.3.0 // indirect
111-
golang.org/x/net v0.2.0 // indirect
111+
golang.org/x/net v0.8.0 // indirect
112112
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
113113
golang.org/x/sync v0.1.0 // indirect
114-
golang.org/x/term v0.2.0 // indirect
115-
golang.org/x/text v0.5.0 // indirect
114+
golang.org/x/term v0.6.0 // indirect
115+
golang.org/x/text v0.8.0 // indirect
116116
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
117117
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
118118
google.golang.org/appengine v1.6.7 // indirect
119-
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
120-
google.golang.org/protobuf v1.28.1 // indirect
119+
google.golang.org/genproto v0.0.0-20230320184635-7606e756e683 // indirect
120+
google.golang.org/protobuf v1.30.0 // indirect
121121
gopkg.in/inf.v0 v0.9.1 // indirect
122122
gopkg.in/ini.v1 v1.67.0 // indirect
123123
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)