Skip to content

Commit ce89973

Browse files
authored
chore(main): release v1.55.0 (#1192)
### Storage Box API Experimental This release adds support for the [Storage Box API](https://docs.hetzner.cloud/reference/hetzner#storage-boxes). The Storage Box integration will be introduced as an **experimental** feature. This experimental phase is expected to last until **21 November 2025**. During this period, upcoming minor releases of the project may include breaking changes to features related to the Storage Box API. You can find out the current state of this in [#1202](#1202). This release includes all changes from the recent [Storage Box API changelog](https://docs.hetzner.cloud/changelog#2025-10-21-storage-box-api-update) entry. #### Examples ```shell hcloud storage-box create \ --name backups \ --type bx11 \ --location fsn1 \ --password "$PASSWORD" \ --enable-ssh \ --reachable-externally hcloud storage-box enable-snapshot-plan backups \ --max-snapshots 10 \ --minute 0 \ --hour 2 ``` ### Features - **server,load-balancer**: add --ip-range argument to attach-to-network commands (#1164) - add support for Storage Boxes (#1118) ### Bug Fixes - list commands print `null` instead of `[]` in JSON mode (#1191) - outdated JSON output after creating resources (#1194) - formatting of server-type describe output (#1196)
1 parent cdcd2b3 commit ce89973

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

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

3+
## [v1.55.0](https://github.com/hetznercloud/cli/releases/tag/v1.55.0)
4+
5+
### Storage Box API Experimental
6+
7+
This release adds support for the [Storage Box API](https://docs.hetzner.cloud/reference/hetzner#storage-boxes).
8+
9+
The Storage Box integration will be introduced as an **experimental** feature. This experimental phase is expected to last until **21 November 2025**. During this period, upcoming minor releases of the project may include breaking changes to features related to the Storage Box API. You can find out the current state of this in [#1202](https://github.com/hetznercloud/cli/issues/1202).
10+
11+
This release includes all changes from the recent [Storage Box API changelog](https://docs.hetzner.cloud/changelog#2025-10-21-storage-box-api-update) entry.
12+
13+
#### Examples
14+
15+
```shell
16+
hcloud storage-box create \
17+
--name backups \
18+
--type bx11 \
19+
--location fsn1 \
20+
--password "$PASSWORD" \
21+
--enable-ssh \
22+
--reachable-externally
23+
24+
hcloud storage-box enable-snapshot-plan backups \
25+
--max-snapshots 10 \
26+
--minute 0 \
27+
--hour 2
28+
```
29+
30+
### Features
31+
32+
- **server,load-balancer**: add --ip-range argument to attach-to-network commands (#1164)
33+
- add support for Storage Boxes (#1118)
34+
35+
### Bug Fixes
36+
37+
- list commands print `null` instead of `[]` in JSON mode (#1191)
38+
- outdated JSON output after creating resources (#1194)
39+
- formatting of server-type describe output (#1196)
40+
341
## [v1.54.0](https://github.com/hetznercloud/cli/releases/tag/v1.54.0)
442

543
### DNS API Beta

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

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

0 commit comments

Comments
 (0)