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 6.4.0 (#768)

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


##
[6.4.0](https://github.com/ansible-collections/hetzner.hcloud/compare/6.3.0...6.4.0)
(2026-01-05)


### Features

* deprecate datacenter in `primary ips` and `servers`
([#773](https://github.com/ansible-collections/hetzner.hcloud/issues/773))
([10c41f0](10c41f032b))


### Bug Fixes

* redirect for storage box module must use a fully qualified name
([#767](https://github.com/ansible-collections/hetzner.hcloud/issues/767))
([55cc1fa](55cc1fa3a9))

---
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 2026-01-05 16:47:20 +01:00 committed by GitHub
parent 10c41f032b
commit 0f23e6c58c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 117 additions and 37 deletions

View file

@ -4,6 +4,48 @@ Hetzner Cloud Ansible Collection Release Notes
.. contents:: Topics
v6.4.0
======
Release Summary
---------------
This release is 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.
.. _changelog: https://docs.hetzner.cloud/changelog#2025-12-16-phasing-out-datacenters
Minor Changes
-------------
- primary_ip - Added the Primary IP ``location`` name to the return values (``hcloud_primary_ip.location``).
- primary_ip - Added the ``location`` argument to create a Primary IP in a specific location.
- primary_ip_info - Added the Primary IPs ``location`` name to the return values (``hcloud_primary_ip_info[].location``).
Deprecated Features
-------------------
- hcloud inventory - The ``hcloud_datacenter`` host variable is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_location`` host variable instead.
- network_info - The ``hcloud_network_info[].servers[].datacenter`` return value is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_network_info[].servers[].location`` return value instead.
- primary_ip - The ``datacenter`` argument is deprecated and will be removed after 1 July 2026. Please use the ``location`` argument instead.
- primary_ip - The ``hcloud_primary_ip.datacenter`` return value is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_primary_ip.location`` return value instead.
- primary_ip_info - The ``hcloud_primary_ip_info[].datacenter`` return value is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_primary_ip_info[].location`` return value instead.
- server - The ``datacenter`` argument is deprecated and will be removed after 1 July 2026. Please use the ``location`` argument instead.
- server - The ``hcloud_server.datacenter`` return value is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_server.location`` return value instead.
- server_info - The ``hcloud_server_info[].datacenter`` return value is deprecated and will be removed after 1 July 2026. Please use the ``hcloud_server_info[].location`` return value instead.
Bugfixes
--------
- Invalid redirects for Storage Box modules are now fixed by using fully qualified module names.
v6.3.0
======