diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 782bc2ae82a..f9535f45c87 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,20 @@ amazon.aws Release Notes .. contents:: Topics +v7.6.1 +====== + +Release Summary +--------------- + +This release includes some bug fixes for the `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). + v7.6.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8afe5f65ffc..c7f507262fc 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2853,3 +2853,16 @@ releases: name: rds_engine_versions_info namespace: '' release_date: '2024-05-07' + 7.6.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). + release_summary: This release includes some bug fixes for the `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 + - 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/galaxy.yml b/galaxy.yml index 2f48616e959..e7139db9cca 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: amazon name: aws -version: 7.6.0 +version: 7.6.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 2649dd0e2c2..16a63c90efc 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 = "7.6.0" +AMAZON_AWS_COLLECTION_VERSION = "7.6.1" _collection_info_context = {