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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

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

### Deprecation of `datacenter` attribute for Primary IPs and Servers

The `datacenter` attribute is deprecated in the `Primary IPs` and `Servers` API resources and will be removed after 1 July 2026. See https://docs.hetzner.cloud/changelog#2025-12-16-phasing-out-datacenters for more details.

The `location` attribute already exists for Servers, and was added for Primary IPs.

Therefor the `datacenter` attribute is deprecated in favor of the `location` attribute in the following commands:

- `hcloud server create`
- `hcloud server describe`
- `hcloud server list`
- `hcloud primary-ip create`
- `hcloud primary-ip describe`
- `hcloud primary-ip list`

In list commands, the `datacenter` columns is not longer shown by default, and is replaced with the `location` column.

### Features

- **server,primary-ip**: deprecate datacenter (#1278)

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

### Features
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.58.0" // x-releaser-pleaser-version
version = "1.59.0" // x-releaser-pleaser-version

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