diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8028b9d3289..3e788401c7a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,21 @@ amazon.aws Release Notes .. contents:: Topics +v8.0.1 +====== + +Release Summary +--------------- + +This release includes some bug fixes for the `s3_object`, `ec2_instance` and `backup_plan_info` modules. + +Bugfixes +-------- + +- backup_plan_info - Bugfix to enable getting info of all backup plans (https://github.com/ansible-collections/amazon.aws/pull/2083). +- ec2_instance - do not ignore IPv6 addresses when a single network interface is specified (https://github.com/ansible-collections/amazon.aws/pull/1979). +- s3_object - fixed issue which was causing ``MemoryError`` exceptions when downloading large files (https://github.com/ansible-collections/amazon.aws/issues/2107). + v8.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8257734d736..2c44605452d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3039,3 +3039,19 @@ releases: - sanity-boto3.yml - sanity-simple.yml release_date: '2024-05-16' + 8.0.1: + changes: + bugfixes: + - backup_plan_info - Bugfix to enable getting info of all backup plans (https://github.com/ansible-collections/amazon.aws/pull/2083). + - ec2_instance - do not ignore IPv6 addresses when a single network interface + is specified (https://github.com/ansible-collections/amazon.aws/pull/1979). + - s3_object - fixed issue which was causing ``MemoryError`` exceptions when + downloading large files (https://github.com/ansible-collections/amazon.aws/issues/2107). + release_summary: This release includes some bug fixes for the `s3_object`, `ec2_instance` + and `backup_plan_info` modules. + fragments: + - 1979-do-not-ignore-ipv6-addresses.yaml + - 2083-backup_plan_info-bugfix-get-info-for-all-plans.yml + - 2107-s3_download.yml + - release_summary.yml + release_date: '2024-06-05' diff --git a/changelogs/fragments/2107-s3_download.yml b/changelogs/fragments/2107-s3_download.yml deleted file mode 100644 index b4604192745..00000000000 --- a/changelogs/fragments/2107-s3_download.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - s3_object - fixed issue which was causing ``MemoryError`` exceptions when downloading large files (https://github.com/ansible-collections/amazon.aws/issues/2107).