Skip to content

Commit b1697c7

Browse files
authored
chore(main): release v1.60.0 (#1306)
<!-- section-start changelog --> ### 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) <!-- 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 ### 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. ~~~~ ### Suffix / End This will be added to the end of the release notes. ~~~~rp-suffix ~~~~ </details> Co-authored-by: Hetzner Cloud Bot <>
1 parent 949f6a8 commit b1697c7

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

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

3+
## [v1.60.0](https://github.com/hetznercloud/cli/releases/tag/v1.60.0)
4+
5+
### Storage Box Subaccounts are no longer identified by `username`
6+
7+
Storage Box Subaccounts now have a `name` property, allowing users to specify custom names for their Subaccounts.
8+
9+
More importantly, Storage Box Subaccounts (`<subaccount>`) are now identified by `id` or `name`, instead of by `id` or `username`.
10+
11+
```diff
12+
hcloud storage-box subaccount describe <storage-box> <subaccount>
13+
-hcloud storage-box subaccount describe my-storage-box u1337-sub1
14+
+hcloud storage-box subaccount describe my-storage-box my-subaccount
15+
```
16+
17+
Existing Subaccounts have been updated to use their `username` as `name` value.
18+
19+
See our [changelog](https://docs.hetzner.cloud/changelog#2026-01-15-storage-box-subaccount-name) for more details.
20+
21+
### Features
22+
23+
- **table**: mark columns as deprecated and show warning (#1300)
24+
- **server**: deprecate datacenter column (#1301)
25+
- **storage-box**: add name property to subaccounts (#1315)
26+
327
## [v1.59.0](https://github.com/hetznercloud/cli/releases/tag/v1.59.0)
428

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

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.59.0" // x-releaser-pleaser-version
5+
version = "1.60.0" // x-releaser-pleaser-version
66

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

0 commit comments

Comments
 (0)