Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep amazon.aws 6.5.2 #1964

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======

Expand Down
12 changes: 12 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 0 additions & 3 deletions changelogs/fragments/20240129-aws_ec2-inventory-bugfix.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Loading