Skip to content

Commit 3028d94

Browse files
authored
chore(main): release v1.54.0 (#1211)
<!-- section-start changelog --> ### DNS API Beta This release adds support for the new [DNS API](https://docs.hetzner.cloud/reference/cloud#dns). The DNS API is currently in **beta**, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the [DNS Beta FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details. Future minor releases of this project may include breaking changes for features that are related to the DNS API. See the [DNS API Beta changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for more details. **Examples** ```terraform resource "hcloud_zone" "example" { name = "example.com" mode = "primary" labels = { key = "value" } } resource "hcloud_zone_rrset" "apex_a_example" { zone = hcloud_zone.example.name name = "@" type = "A" records = [ { value = "201.78.10.45", comment = "server1" }, ] } ``` ### Features - support the new DNS API (#1210) <!-- 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 ### DNS API Beta This release adds support for the new [DNS API](https://docs.hetzner.cloud/reference/cloud#dns). The DNS API is currently in **beta**, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the [DNS Beta FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details. Future minor releases of this project may include breaking changes for features that are related to the DNS API. See the [DNS API Beta changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for more details. **Examples** ```terraform resource "hcloud_zone" "example" { name = "example.com" mode = "primary" labels = { key = "value" } } resource "hcloud_zone_rrset" "apex_a_example" { zone = hcloud_zone.example.name name = "@" type = "A" records = [ { value = "201.78.10.45", comment = "server1" }, ] } ``` ~~~~ ### Suffix / End This will be added to the end of the release notes. ~~~~rp-suffix ~~~~ </details> Co-authored-by: Hetzner Cloud Bot <>
1 parent 177f3d3 commit 3028d94

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Changelog
22

3+
## [v1.54.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.54.0)
4+
5+
### DNS API Beta
6+
7+
This release adds support for the new [DNS API](https://docs.hetzner.cloud/reference/cloud#dns).
8+
9+
The DNS API is currently in **beta**, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the [DNS Beta FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details.
10+
11+
Future minor releases of this project may include breaking changes for features that are related to the DNS API.
12+
13+
See the [DNS API Beta changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for more details.
14+
15+
**Examples**
16+
17+
```terraform
18+
resource "hcloud_zone" "example" {
19+
name = "example.com"
20+
mode = "primary"
21+
labels = {
22+
key = "value"
23+
}
24+
}
25+
26+
resource "hcloud_zone_rrset" "apex_a_example" {
27+
zone = hcloud_zone.example.name
28+
name = "@"
29+
type = "A"
30+
records = [
31+
{ value = "201.78.10.45", comment = "server1" },
32+
]
33+
}
34+
```
35+
36+
### Features
37+
38+
- support the new DNS API (#1210)
39+
340
## [v1.53.1](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.53.1)
441

542
### Bug Fixes

0 commit comments

Comments
 (0)