Commit 36670bd
authored
chore(main): release v2.8.0 (#563)
<!-- section-start changelog -->
### DNS API Beta
This release adds support for the new [DNS
API](https://docs.hetzner.cloud/reference/cloud#dns).
The DNS API is currently in **beta**, which will likely end on 10
November 2025. After the beta ended, it will no longer be possible to
create new zones in the old DNS system. See the [DNS Beta
FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details.
Future minor releases of this project may include breaking changes for
features that are related to the DNS API.
See the [DNS API Beta
changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for
more details.
**Examples**
```py
resp = client.zones.create(
name="example.com",
mode="primary",
labels={"key": "value"},
rrsets=[
ZoneRRSet(
name="@",
type="A",
records=[
ZoneRecord(value="201.180.75.2", comment="server1")
],
)
],
)
resp.action.wait_until_finished()
zone = resp.zone
```
### Features
- add new `ip_range` param to load balancer `attach_to_network` (#562)
- add new `ip_range` param to server `attach_to_network` (#561)
- support the new DNS API (#568)
### Bug Fixes
- source_ips property is optional in firewall rule (#567)
<!-- 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
### DNS API Beta
This release adds support for the new [DNS
API](https://docs.hetzner.cloud/reference/cloud#dns).
The DNS API is currently in **beta**, which will likely end on 10
November 2025. After the beta ended, it will no longer be possible to
create new zones in the old DNS system. See the [DNS Beta
FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details.
Future minor releases of this project may include breaking changes for
features that are related to the DNS API.
See the [DNS API Beta
changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for
more details.
**Examples**
```py
resp = client.zones.create(
name="example.com",
mode="primary",
labels={"key": "value"},
rrsets=[
ZoneRRSet(
name="@",
type="A",
records=[
ZoneRecord(value="201.180.75.2", comment="server1")
],
)
],
)
resp.action.wait_until_finished()
zone = resp.zone
```
~~~~
### Suffix / End
This will be added to the end of the release notes.
~~~~rp-suffix
~~~~
</details>
Co-authored-by: Hetzner Cloud Bot <>1 parent fe49a67 commit 36670bd
3 files changed
+46
-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 | + | |
| 46 | + | |
3 | 47 | | |
4 | 48 | | |
5 | 49 | | |
| |||
| 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