From a20561944d0ba9485a6e10e99df15c56a688541d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Thu, 6 Nov 2025 21:02:59 +0100 Subject: [PATCH] feat: update default x86 server type to cx23 (#129) `cx22` is deprecated and will be removed in January 2026. Changelog: https://docs.hetzner.cloud/changelog#2025-10-16-server-types-deprecated --- hcloudimages/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcloudimages/client.go b/hcloudimages/client.go index 2869cf3..5940f98 100644 --- a/hcloudimages/client.go +++ b/hcloudimages/client.go @@ -34,7 +34,7 @@ var ( } serverTypePerArchitecture = map[hcloud.Architecture]*hcloud.ServerType{ - hcloud.ArchitectureX86: {Name: "cx22"}, + hcloud.ArchitectureX86: {Name: "cx23"}, hcloud.ArchitectureARM: {Name: "cax11"}, }