mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
chore(main): release 5.1.0 (#653)
🤖 I have created a release *beep* *boop* --- ## [5.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/5.0.1...5.1.0) (2025-06-11) ### Features * allow recreating ssh key when public key in the API does not match ([#634](https://github.com/ansible-collections/hetzner.hcloud/issues/634)) ([4fc2003](4fc2003f30)) ### Bug Fixes * ensure returned resource ids are integers ([#651](https://github.com/ansible-collections/hetzner.hcloud/issues/651)) ([579b34e](579b34e754)) --- 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:
parent
6bd07dca84
commit
f86cdf460b
9 changed files with 46 additions and 11 deletions
2
.github/release-please-manifest.json
vendored
2
.github/release-please-manifest.json
vendored
|
|
@ -1 +1 @@
|
|||
{".":"5.0.1"}
|
||||
{".":"5.1.0"}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,21 @@ Hetzner Cloud Ansible Collection Release Notes
|
|||
|
||||
.. contents:: Topics
|
||||
|
||||
v5.1.0
|
||||
======
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- ssh_key - Log a warning when the provided public key does not match one in the API.
|
||||
- ssh_key - When the public key does not match the one in the API, allow recreating the SSH Key in the API using the ``force=true`` argument.
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- All returned resource IDs are now integers instead of strings.
|
||||
- server - The ``placement_group`` argument now correctly handles placement group IDs during updates.
|
||||
|
||||
v5.0.1
|
||||
======
|
||||
|
||||
|
|
|
|||
|
|
@ -654,3 +654,19 @@ releases:
|
|||
fragments:
|
||||
- remove-deprecated-argument-force_upgrade.yml
|
||||
release_date: '2025-05-21'
|
||||
5.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- All returned resource IDs are now integers instead of strings.
|
||||
- server - The ``placement_group`` argument now correctly handles placement
|
||||
group IDs during updates.
|
||||
minor_changes:
|
||||
- ssh_key - Log a warning when the provided public key does not match one in
|
||||
the API.
|
||||
- ssh_key - When the public key does not match the one in the API, allow recreating
|
||||
the SSH Key in the API using the ``force=true`` argument.
|
||||
fragments:
|
||||
- returned-resource-ids.yml
|
||||
- server-placement-group-id-idempotency.yml
|
||||
- ssh-key-force-argument.yml
|
||||
release_date: '2025-06-11'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# Changelog
|
||||
|
||||
## [5.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/5.0.1...5.1.0) (2025-06-11)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* allow recreating ssh key when public key in the API does not match ([#634](https://github.com/ansible-collections/hetzner.hcloud/issues/634)) ([4fc2003](https://github.com/ansible-collections/hetzner.hcloud/commit/4fc2003f304971ace64be27581b117aa5ad09378))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* ensure returned resource ids are integers ([#651](https://github.com/ansible-collections/hetzner.hcloud/issues/651)) ([579b34e](https://github.com/ansible-collections/hetzner.hcloud/commit/579b34e754a53a10522e5edcd5994133ba653f42))
|
||||
|
||||
## [5.0.1](https://github.com/ansible-collections/hetzner.hcloud/compare/5.0.0...5.0.1) (2025-05-21)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- All returned resource IDs are now integers instead of strings.
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- server - The ``placement_group`` argument now correctly handles placement group IDs during updates.
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
minor_changes:
|
||||
- ssh_key - Log a warning when the provided public key does not match one in the API.
|
||||
- ssh_key - When the public key does not match the one in the API, allow recreating the
|
||||
SSH Key in the API using the ``force=true`` argument.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
namespace: hetzner
|
||||
name: hcloud
|
||||
version: 5.0.1
|
||||
version: 5.1.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Hetzner Cloud (github.com/hetznercloud)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
version = "5.0.1" # x-release-please-version
|
||||
version = "5.1.0" # x-release-please-version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue