Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [v1.54.0](https://github.com/hetznercloud/cli/releases/tag/v1.54.0)

### 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)

## [v1.53.0](https://github.com/hetznercloud/cli/releases/tag/v1.53.0)

[Server Types](https://docs.hetzner.cloud/reference/cloud#server-types) now depend on [Locations](https://docs.hetzner.cloud/reference/cloud#locations).
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version

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

// versionPrerelease is a semver version pre-release identifier (https://semver.org).
//
Expand Down
Loading