Releases: hetznercloud/hcloud-python
v2.17.0
v2.16.0
v2.15.0
v2.14.0
v2.13.0
Phasing out datacenters in Primary IPs and Servers
We added a new location property to the request body and response of Servers and Primary IPs. The same data was previously present under datacenter.location.
We deprecated the datacenter property in the request body and response of Servers and Primary IPs. The removal will happen after 1 July 2026.
See our changelog for more details.
Features
v2.12.0
Storage Box API Experimental
This release adds support for the Storage Box API.
The Storage Box integration will be introduced as an experimental feature. This experimental phase is expected to last at least until 12 January 2026. During this period, upcoming minor releases of the project may include breaking changes to features related to Storage Boxes.
This release includes all changes from the recent Storage Box API changelog entry.
Examples
response = client.storage_boxes.create(
name="string",
location=Location(name="fsn1"),
storage_box_type=StorageBoxType(name="bx11"),
labels={
"environment": "prod",
"example.com/my": "label",
"just-a-key": "",
},
password="my-password",
access_settings=StorageBoxAccessSettings(
reachable_externally=False,
samba_enabled=False,
ssh_enabled=False,
webdav_enabled=False,
zfs_enabled=False,
),
ssh_keys=[SSHKey(public_key="ssh-rsa AAAjjk76kgf...Xt")],
)
response.action.wait_until_finished()
storage_box = response.storage_boxFeatures
v2.11.1
v2.11.0
DNS API is now generally available
The DNS API is now generally available, as well as support for features in this project that are related to the DNS API.
To migrate existing zones to the new DNS API, see the DNS migration guide.
See the changelog for more details.
Features
- DNS support is now generally available (#581)