Commit 98dce77
authored
chore(main): release v2.12.0 (#599)
### 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 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](https://docs.hetzner.cloud/changelog#2025-10-21-storage-box-api-update)
entry.
#### Examples
```python
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_box
```
### Features
- add update rrset records action to zone client (#597)
- add support for Storage Boxes (#524)1 parent 48551da commit 98dce77
3 files changed
+45
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
3 | 46 | | |
4 | 47 | | |
5 | 48 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
0 commit comments