diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54f3292..d2288aa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,21 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v5.3.0 +====== + +Minor Changes +------------- + +- server_type_info - Deprecate Server Type ``deprecation`` property. The property will gradually be phased out as per Locations deprecations are being announced. Please use the new per Locations deprecation information instead. +- server_type_info - Return new Server Type ``category`` property. +- server_type_info - Return new Server Type ``locations`` property. The new property defines a list of supported Locations and additional per Locations details such as deprecations information. + +Bugfixes +-------- + +- floating_ip - Wait for the Floating IP assign action to complete to reduce chances of running into ``locked`` errors. + v5.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9236542..dc822fd 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -682,3 +682,21 @@ releases: - missing-volume-attachment-meta.yml - rename-volume.yml release_date: '2025-08-14' + 5.3.0: + changes: + bugfixes: + - floating_ip - Wait for the Floating IP assign action to complete to reduce + chances of running into ``locked`` errors. + minor_changes: + - server_type_info - Deprecate Server Type ``deprecation`` property. The property + will gradually be phased out as per Locations deprecations are being announced. + Please use the new per Locations deprecation information instead. + - server_type_info - Return new Server Type ``category`` property. + - server_type_info - Return new Server Type ``locations`` property. The new + property defines a list of supported Locations and additional per Locations + details such as deprecations information. + fragments: + - add-server-type-category.yml + - per-location-server-types.yml + - wait-floating-ip-assign-action.yml + release_date: '2025-09-26' diff --git a/changelogs/fragments/add-server-type-category.yml b/changelogs/fragments/add-server-type-category.yml deleted file mode 100644 index d11914f..0000000 --- a/changelogs/fragments/add-server-type-category.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - server_type_info - Return new Server Type ``category`` property. diff --git a/changelogs/fragments/per-location-server-types.yml b/changelogs/fragments/per-location-server-types.yml deleted file mode 100644 index ab361ee..0000000 --- a/changelogs/fragments/per-location-server-types.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - server_type_info - Return new Server Type ``locations`` property. The new property defines a list of supported Locations and additional per Locations details such as deprecations information. - - server_type_info - Deprecate Server Type ``deprecation`` property. The property will gradually be phased out as per Locations deprecations are being announced. Please use the new per Locations deprecation information instead. diff --git a/changelogs/fragments/wait-floating-ip-assign-action.yml b/changelogs/fragments/wait-floating-ip-assign-action.yml deleted file mode 100644 index d932791..0000000 --- a/changelogs/fragments/wait-floating-ip-assign-action.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - floating_ip - Wait for the Floating IP assign action to complete to reduce chances of running into ``locked`` errors.