1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-03 23:51:48 +00:00

chore(main): release 5.4.0 (#699)

🤖 I have created a release *beep* *boop*
---


##
[5.4.0](https://github.com/ansible-collections/hetzner.hcloud/compare/5.3.1...5.4.0)
(2025-10-07)


### Features

* support the new DNS API
([#703](https://github.com/ansible-collections/hetzner.hcloud/issues/703))
([adddef5](adddef5fc0))


### Bug Fixes

* add experimental features maturity
([#698](https://github.com/ansible-collections/hetzner.hcloud/issues/698))
([1251ee0](1251ee0e6f))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
This commit is contained in:
Hetzner Cloud Bot 2025-10-07 11:07:55 +02:00 committed by GitHub
parent adddef5fc0
commit 4ab8e915ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 91 additions and 47 deletions

View file

@ -4,6 +4,58 @@ Hetzner Cloud Ansible Collection Release Notes
.. contents:: Topics
v5.4.0
======
Release Summary
---------------
This release adds support for the new `DNS API`_.
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`_ 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`_ for more details.
**Examples**
.. code:: yaml
- name: Create a primary Zone
hetzner.hcloud.zone:
name: example.com
mode: primary
labels:
key: value
state: present
- name: Create a Zone RRSet
hetzner.hcloud.zone_rrset:
zone: example.com
name: "@"
type: A
records:
- comment: server1
value: 201.118.10.2
state: present
.. _DNS Beta FAQ: https://docs.hetzner.com/networking/dns/faq/beta
.. _DNS API: https://docs.hetzner.cloud/reference/cloud#dns
.. _DNS API Beta changelog: https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta
Minor Changes
-------------
- zone - New module to manage DNS Zones in Hetzner Cloud.
- zone_info - New module to fetch DNS Zones details.
- zone_rrset - New module to manage DNS Zone RRSets in the Hetzner Cloud.
- zone_rrset_info - New module to fetch DNS RRSets details.
v5.3.1
======