diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3799edfc7d1..ba2a4397dfd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ amazon.aws Release Notes .. contents:: Topics +v6.5.2 +====== + +Release Summary +--------------- + +This release includes a bugfix for the ``amazon.aws.aws_ec2`` inventory plugin when retrieving information for more than 40 instances with ``use_ssm_inventory``. + +Bugfixes +-------- + +- plugins/inventory/aws_ec2 - Fix failure when retrieving information for more than 40 instances with use_ssm_inventory (https://github.com/ansible-collections/amazon.aws/issues/1713). + v6.5.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index eeb5d364bc3..fabff1aeaa5 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2384,3 +2384,15 @@ releases: - 1881-allow-s3_object-to-specify-content-type-in-metadata.yml - release_summary.yml release_date: '2023-12-07' + 6.5.2: + changes: + bugfixes: + - plugins/inventory/aws_ec2 - Fix failure when retrieving information for more + than 40 instances with use_ssm_inventory (https://github.com/ansible-collections/amazon.aws/issues/1713). + release_summary: This release includes a bugfix for the ``amazon.aws.aws_ec2`` + inventory plugin when retrieving information for more than 40 instances with + ``use_ssm_inventory``. + fragments: + - 20240129-aws_ec2-inventory-bugfix.yml + - release_summary.yml + release_date: '2024-02-06' diff --git a/changelogs/fragments/20240129-aws_ec2-inventory-bugfix.yml b/changelogs/fragments/20240129-aws_ec2-inventory-bugfix.yml deleted file mode 100644 index c197672ad36..00000000000 --- a/changelogs/fragments/20240129-aws_ec2-inventory-bugfix.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - plugins/inventory/aws_ec2 - Fix failure when retrieving information for more than 40 instances with use_ssm_inventory (https://github.com/ansible-collections/amazon.aws/issues/1713). diff --git a/galaxy.yml b/galaxy.yml index a4bdb059d49..ff4737942a6 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: amazon name: aws -version: 6.5.1 +version: 6.5.2 readme: README.md authors: - Ansible (https://github.com/ansible) diff --git a/plugins/module_utils/common.py b/plugins/module_utils/common.py index fcc2377cacd..96c1f548d13 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 = "6.5.1" +AMAZON_AWS_COLLECTION_VERSION = "6.5.2" _collection_info_context = {