Commit 6acfeba
authored
chore(main): release v1.53.0 (#1161)
<!-- section-start changelog -->
[Server Types](https://docs.hetzner.cloud/reference/cloud#server-types)
now depend on
[Locations](https://docs.hetzner.cloud/reference/cloud#locations).
- We added a new `locations` property to the [Server
Types](https://docs.hetzner.cloud/reference/cloud#server-types)
resource. The new property defines a list of supported
[Locations](https://docs.hetzner.cloud/reference/cloud#locations) and
additional per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
details such as deprecations information.
- We deprecated the `deprecation` property from the [Server
Types](https://docs.hetzner.cloud/reference/cloud#server-types)
resource. The property will gradually be phased out as per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
deprecations are being announced. Please use the new per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
deprecation information instead.
See our
[changelog](https://docs.hetzner.cloud/changelog#2025-09-24-per-location-server-types)
for more details.
**Upgrading**
```tf
// Before
data "hcloud_server_type" "main" {
name = "cx22"
}
check "server_type" {
assert {
condition = !data.hcloud_server_type.main.is_deprecated
error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated"
}
}
```
```tf
// After
data "hcloud_location" "main" {
name = "fsn1"
}
data "hcloud_server_type" "main" {
name = "cx22"
}
locals {
server_type_location = one([
for o in data.hcloud_server_type.main.locations : o
if o.name == data.hcloud_location.main.name
])
}
check "server_type_location" {
assert {
condition = local.server_type_location != null
error_message = "Server Type ${data.hcloud_server_type.main.name} does not exists in Location ${data.hcloud_location.main.name}"
}
assert {
condition = !local.server_type_location.is_deprecated
error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated in Location ${data.hcloud_location.main.name}"
}
}
```
### Features
- add category property to server type (#1184)
- per locations server types (#1193)
### Bug Fixes
- ensure exponential poll backoff is configured (#1160)
- handle not found volume deletion (#1189)
- wait for floating_ip assign action to complete (#1195)
- add experimental features maturity (#1191)
<!-- section-end changelog -->
---
<details>
<summary><h4>PR by <a
href="https://github.com/apricote/releaser-pleaser">releaser-pleaser</a>
🤖</h4></summary>
If you want to modify the proposed release, add you overrides here. You
can learn more about the options in the docs.
## Release Notes
### Prefix / Start
This will be added to the start of the release notes.
~~~~rp-prefix
[Server Types](https://docs.hetzner.cloud/reference/cloud#server-types)
now depend on
[Locations](https://docs.hetzner.cloud/reference/cloud#locations).
- We added a new `locations` property to the [Server
Types](https://docs.hetzner.cloud/reference/cloud#server-types)
resource. The new property defines a list of supported
[Locations](https://docs.hetzner.cloud/reference/cloud#locations) and
additional per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
details such as deprecations information.
- We deprecated the `deprecation` property from the [Server
Types](https://docs.hetzner.cloud/reference/cloud#server-types)
resource. The property will gradually be phased out as per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
deprecations are being announced. Please use the new per
[Locations](https://docs.hetzner.cloud/reference/cloud#locations)
deprecation information instead.
See our
[changelog](https://docs.hetzner.cloud/changelog#2025-09-24-per-location-server-types)
for more details.
**Upgrading**
```tf
// Before
data "hcloud_server_type" "main" {
name = "cx22"
}
check "server_type" {
assert {
condition = !data.hcloud_server_type.main.is_deprecated
error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated"
}
}
```
```tf
// After
data "hcloud_location" "main" {
name = "fsn1"
}
data "hcloud_server_type" "main" {
name = "cx22"
}
locals {
server_type_location = one([
for o in data.hcloud_server_type.main.locations : o
if o.name == data.hcloud_location.main.name
])
}
check "server_type_location" {
assert {
condition = local.server_type_location != null
error_message = "Server Type ${data.hcloud_server_type.main.name} does not exists in Location ${data.hcloud_location.main.name}"
}
assert {
condition = !local.server_type_location.is_deprecated
error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated in Location ${data.hcloud_location.main.name}"
}
}
```
~~~~
### Suffix / End
This will be added to the end of the release notes.
~~~~rp-suffix
~~~~
</details>
Co-authored-by: Hetzner Cloud Bot <>1 parent c55cc06 commit 6acfeba
1 file changed
+67
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
3 | 70 | | |
4 | 71 | | |
5 | 72 | | |
| |||
0 commit comments