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

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

### Storage Box Subaccounts are no longer identified by `username`

Storage Box Subaccounts now have a `name` property, allowing users to specify custom names for their Subaccounts.

More importantly, Storage Box Subaccounts (`<subaccount>`) are now identified by `id` or `name`, instead of by `id` or `username`.

```diff
hcloud storage-box subaccount describe <storage-box> <subaccount>
-hcloud storage-box subaccount describe my-storage-box u1337-sub1
+hcloud storage-box subaccount describe my-storage-box my-subaccount
```

Existing Subaccounts have been updated to use their `username` as `name` value.

See our [changelog](https://docs.hetzner.cloud/changelog#2026-01-15-storage-box-subaccount-name) for more details.

### Features

- **table**: mark columns as deprecated and show warning (#1300)
- **server**: deprecate datacenter column (#1301)
- **storage-box**: add name property to subaccounts (#1315)

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

### Deprecation of `datacenter` attribute for Primary IPs and Servers
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.59.0" // x-releaser-pleaser-version
version = "1.60.0" // x-releaser-pleaser-version

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