1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

chore(main): release 5.0.0 (#613)

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


##
[5.0.0](https://github.com/ansible-collections/hetzner.hcloud/compare/4.3.0...5.0.0)
(2025-05-21)


### ⚠ BREAKING CHANGES

* do not detach volume if `server` is not provided
([#632](https://github.com/ansible-collections/hetzner.hcloud/issues/632))
* prevent host variable name collision with ansible reserved names
([#617](https://github.com/ansible-collections/hetzner.hcloud/issues/617))
* drop support for ansible-core 2.16
([#612](https://github.com/ansible-collections/hetzner.hcloud/issues/612))
* drop support for ansible-core 2.15
([#611](https://github.com/ansible-collections/hetzner.hcloud/issues/611))

### Features

* add volume_attachment module
([#622](https://github.com/ansible-collections/hetzner.hcloud/issues/622))
([c37cdf0](c37cdf0bc6))
* allow renaming a server
([#619](https://github.com/ansible-collections/hetzner.hcloud/issues/619))
([e59e787](e59e787d99))
* drop support for ansible-core 2.15
([#611](https://github.com/ansible-collections/hetzner.hcloud/issues/611))
([92f1354](92f135456f))
* drop support for ansible-core 2.16
([#612](https://github.com/ansible-collections/hetzner.hcloud/issues/612))
([140d150](140d1508cc))
* drop support for python 3.8
([#615](https://github.com/ansible-collections/hetzner.hcloud/issues/615))
([b82e18f](b82e18ffbd))


### Bug Fixes

* do not detach volume if `server` is not provided
([#632](https://github.com/ansible-collections/hetzner.hcloud/issues/632))
([e8fda35](e8fda3557c))
* prevent host variable name collision with ansible reserved names
([#617](https://github.com/ansible-collections/hetzner.hcloud/issues/617))
([5de425c](5de425c90c))

---
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-05-21 17:06:52 +02:00 committed by GitHub
parent 88008eeaea
commit ac1b8bdbf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 69 additions and 19 deletions

View file

@ -1 +1 @@
{".":"4.3.0"}
{".":"5.0.0"}

View file

@ -4,6 +4,24 @@ Hetzner Cloud Ansible Collection Release Notes
.. contents:: Topics
v5.0.0
======
Minor Changes
-------------
- server - Allow renaming a server.
- volume_attachment - Add new `volume_attachment` module to manage Volumes attachment.
Breaking Changes / Porting Guide
--------------------------------
- Drop support for ansible-core 2.15.
- Drop support for ansible-core 2.16.
- Drop support for python 3.8.
- inventory - The default value for the `hostvars_prefix` option is now set to `hcloud_`. Make sure to update all references to host variables provided by the inventory. You may revert this change by setting the `hostvars_prefix` option to `""`.
- volume - Volumes are no longer detached when the server argument is not provided. Please use the ``volume_attachment`` module to manage volume attachments.
v4.3.0
======

View file

@ -622,3 +622,27 @@ releases:
fragments:
- server-add-created-state.yml
release_date: '2025-03-21'
5.0.0:
changes:
breaking_changes:
- Drop support for ansible-core 2.15.
- Drop support for ansible-core 2.16.
- Drop support for python 3.8.
- inventory - The default value for the `hostvars_prefix` option is now set
to `hcloud_`. Make sure to update all references to host variables provided
by the inventory. You may revert this change by setting the `hostvars_prefix`
option to `""`.
- volume - Volumes are no longer detached when the server argument is not provided.
Please use the ``volume_attachment`` module to manage volume attachments.
minor_changes:
- server - Allow renaming a server.
- volume_attachment - Add new `volume_attachment` module to manage Volumes attachment.
fragments:
- add-volume-attachment-module.yml
- change-default-inventory-hostvars-prefix.yml
- drop-support-for-ansible-2.15.yml
- drop-support-for-ansible-2.16.yml
- drop-support-for-python-3.8.yml
- remove-auto-detach-volume.yml
- renaming-a-server.yml
release_date: '2025-05-21'

View file

@ -1,5 +1,29 @@
# Changelog
## [5.0.0](https://github.com/ansible-collections/hetzner.hcloud/compare/4.3.0...5.0.0) (2025-05-21)
### ⚠ BREAKING CHANGES
* do not detach volume if `server` is not provided ([#632](https://github.com/ansible-collections/hetzner.hcloud/issues/632))
* prevent host variable name collision with ansible reserved names ([#617](https://github.com/ansible-collections/hetzner.hcloud/issues/617))
* drop support for ansible-core 2.16 ([#612](https://github.com/ansible-collections/hetzner.hcloud/issues/612))
* drop support for ansible-core 2.15 ([#611](https://github.com/ansible-collections/hetzner.hcloud/issues/611))
### Features
* add volume_attachment module ([#622](https://github.com/ansible-collections/hetzner.hcloud/issues/622)) ([c37cdf0](https://github.com/ansible-collections/hetzner.hcloud/commit/c37cdf0bc654eeeb987e6407648ce8e6a0aed599))
* allow renaming a server ([#619](https://github.com/ansible-collections/hetzner.hcloud/issues/619)) ([e59e787](https://github.com/ansible-collections/hetzner.hcloud/commit/e59e787d9927041d1c50261476e6df6c58d71869))
* drop support for ansible-core 2.15 ([#611](https://github.com/ansible-collections/hetzner.hcloud/issues/611)) ([92f1354](https://github.com/ansible-collections/hetzner.hcloud/commit/92f135456fa6caff29e832d99db9870ae9c61aaf))
* drop support for ansible-core 2.16 ([#612](https://github.com/ansible-collections/hetzner.hcloud/issues/612)) ([140d150](https://github.com/ansible-collections/hetzner.hcloud/commit/140d1508ccb8adb1d8fc2f64e446e993bfc02336))
* drop support for python 3.8 ([#615](https://github.com/ansible-collections/hetzner.hcloud/issues/615)) ([b82e18f](https://github.com/ansible-collections/hetzner.hcloud/commit/b82e18ffbdf8a584b89d43970f6f0cb63d5ac3b8))
### Bug Fixes
* do not detach volume if `server` is not provided ([#632](https://github.com/ansible-collections/hetzner.hcloud/issues/632)) ([e8fda35](https://github.com/ansible-collections/hetzner.hcloud/commit/e8fda3557cf835e4e711a934b46d4f672f9b517c))
* prevent host variable name collision with ansible reserved names ([#617](https://github.com/ansible-collections/hetzner.hcloud/issues/617)) ([5de425c](https://github.com/ansible-collections/hetzner.hcloud/commit/5de425c90c3ea365ebd24527cce5828a1debd35b))
## [4.3.0](https://github.com/ansible-collections/hetzner.hcloud/compare/4.2.2...4.3.0) (2025-03-21)

View file

@ -1,2 +0,0 @@
minor_changes:
- volume_attachment - Add new `volume_attachment` module to manage Volumes attachment.

View file

@ -1,4 +0,0 @@
breaking_changes:
- inventory - The default value for the `hostvars_prefix` option is now set to `hcloud_`.
Make sure to update all references to host variables provided by the inventory. You
may revert this change by setting the `hostvars_prefix` option to `""`.

View file

@ -1,2 +0,0 @@
breaking_changes:
- Drop support for ansible-core 2.15.

View file

@ -1,2 +0,0 @@
breaking_changes:
- Drop support for ansible-core 2.16.

View file

@ -1,2 +0,0 @@
breaking_changes:
- Drop support for python 3.8.

View file

@ -1,2 +0,0 @@
breaking_changes:
- volume - Volumes are no longer detached when the server argument is not provided. Please use the ``volume_attachment`` module to manage volume attachments.

View file

@ -1,2 +0,0 @@
minor_changes:
- server - Allow renaming a server.

View file

@ -1,6 +1,6 @@
namespace: hetzner
name: hcloud
version: 4.3.0
version: 5.0.0
readme: README.md
authors:
- Hetzner Cloud (github.com/hetznercloud)

View file

@ -1,3 +1,3 @@
from __future__ import annotations
version = "4.3.0" # x-release-please-version
version = "5.0.0" # x-release-please-version