From df45fd023df6121912c524cbfc0bbcc24d24c847 Mon Sep 17 00:00:00 2001 From: Alina Buzachis Date: Wed, 5 Jun 2024 16:17:19 +0200 Subject: [PATCH] Prep amazon.aws 8.0.1 (#2120) * Prep amazon.aws 8.0.1 Signed-off-by: Alina Buzachis * update aws user-agent variable with version from galaxy.yml --------- Signed-off-by: Alina Buzachis Co-authored-by: alinabuzachis --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/changelog.yaml | 16 ++++++++++++++++ .../1979-do-not-ignore-ipv6-addresses.yaml | 3 --- ...p_plan_info-bugfix-get-info-for-all-plans.yml | 3 --- changelogs/fragments/2107-s3_download.yml | 2 -- galaxy.yml | 2 +- plugins/module_utils/common.py | 2 +- 7 files changed, 33 insertions(+), 10 deletions(-) delete mode 100644 changelogs/fragments/1979-do-not-ignore-ipv6-addresses.yaml delete mode 100644 changelogs/fragments/2083-backup_plan_info-bugfix-get-info-for-all-plans.yml delete mode 100644 changelogs/fragments/2107-s3_download.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f867fc9e4e5..7a4fa628a7d 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 546b1fe229f..c02fa995c38 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3026,3 +3026,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/1979-do-not-ignore-ipv6-addresses.yaml b/changelogs/fragments/1979-do-not-ignore-ipv6-addresses.yaml deleted file mode 100644 index 95ada6d654d..00000000000 --- a/changelogs/fragments/1979-do-not-ignore-ipv6-addresses.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ec2_instance - do not ignore IPv6 addresses when a single network interface is specified (https://github.com/ansible-collections/amazon.aws/pull/1979). diff --git a/changelogs/fragments/2083-backup_plan_info-bugfix-get-info-for-all-plans.yml b/changelogs/fragments/2083-backup_plan_info-bugfix-get-info-for-all-plans.yml deleted file mode 100644 index 96bedc378bc..00000000000 --- a/changelogs/fragments/2083-backup_plan_info-bugfix-get-info-for-all-plans.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - backup_plan_info - Bugfix to enable getting info of all backup plans (https://github.com/ansible-collections/amazon.aws/pull/2083). 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). diff --git a/galaxy.yml b/galaxy.yml index ea792a1e4f7..783abca5fb6 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: amazon name: aws -version: 8.0.0 +version: 8.0.1 readme: README.md authors: - Ansible (https://github.com/ansible) diff --git a/plugins/module_utils/common.py b/plugins/module_utils/common.py index e802a8d80b2..ae768e2e334 100644 --- a/plugins/module_utils/common.py +++ b/plugins/module_utils/common.py @@ -4,7 +4,7 @@ # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) AMAZON_AWS_COLLECTION_NAME = "amazon.aws" -AMAZON_AWS_COLLECTION_VERSION = "8.0.0" +AMAZON_AWS_COLLECTION_VERSION = "8.0.1" _collection_info_context = {