diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f910f16..aefcbac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,20 @@ 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. + v5.0.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ce111ab..478f43c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -654,3 +654,16 @@ 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. + 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 + - ssh-key-force-argument.yml + release_date: '2025-06-11' diff --git a/changelogs/fragments/returned-resource-ids.yml b/changelogs/fragments/returned-resource-ids.yml deleted file mode 100644 index 5964a41..0000000 --- a/changelogs/fragments/returned-resource-ids.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - All returned resource IDs are now integers instead of strings. diff --git a/changelogs/fragments/ssh-key-force-argument.yml b/changelogs/fragments/ssh-key-force-argument.yml deleted file mode 100644 index c4a2f2a..0000000 --- a/changelogs/fragments/ssh-key-force-argument.yml +++ /dev/null @@ -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.