Skip to content

Commit 4240171

Browse files
authored
chore(main): release v1.54.0 (#1183)
<!-- 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** ```sh hcloud zone create \ --name example.com \ --mode primary \ --label key=value hcloud zone rrset create example.com \ --name @ \ --type A \ --record 201.180.75.2 ``` ### Features - support the new DNS API (#1182) <!-- 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** ```sh hcloud zone create \ --name example.com \ --mode primary \ --label key=value hcloud zone rrset create example.com \ --name @ \ --type A \ --record 201.180.75.2 ``` ~~~~ ### Suffix / End This will be added to the end of the release notes. ~~~~rp-suffix ~~~~ </details> Co-authored-by: Hetzner Cloud Bot <>
1 parent bfbf5eb commit 4240171

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

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

3+
## [v1.54.0](https://github.com/hetznercloud/cli/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+
```sh
18+
hcloud zone create \
19+
--name example.com \
20+
--mode primary \
21+
--label key=value
22+
23+
hcloud zone rrset create example.com \
24+
--name @ \
25+
--type A \
26+
--record 201.180.75.2
27+
```
28+
29+
### Features
30+
31+
- support the new DNS API (#1182)
32+
333
## [v1.53.0](https://github.com/hetznercloud/cli/releases/tag/v1.53.0)
434

535
[Server Types](https://docs.hetzner.cloud/reference/cloud#server-types) now depend on [Locations](https://docs.hetzner.cloud/reference/cloud#locations).

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
var (
44
// version is a semver version (https://semver.org).
5-
version = "1.53.0" // x-releaser-pleaser-version
5+
version = "1.54.0" // x-releaser-pleaser-version
66

77
// versionPrerelease is a semver version pre-release identifier (https://semver.org).
88
//

0 commit comments

Comments
 (0)