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.1 #1905

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
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ amazon.aws Release Notes
.. contents:: Topics


v6.5.1
======

Release Summary
---------------

This release includes several bugfixes.

Minor Changes
-------------

- ec2_vpc_subnet - use ``wait_timeout`` to also control maximum time to wait for initial creation of subnets (https://github.com/ansible-collections/amazon.aws/pull/1848).

Bugfixes
--------

- ec2_instance - retry API call if we get ``InvalidInstanceID.NotFound`` error (https://github.com/ansible-collections/amazon.aws/pull/1650).
- ec2_vpc_subnet - cleanly handle failure when subnet isn't created in time (https://github.com/ansible-collections/amazon.aws/pull/1848).
- s3_object - Fix typo that caused false deprecation warning when setting `overwrite=latest` (https://github.com/ansible-collections/amazon.aws/pull/1847).
- s3_object - fixed ``NoSuchTagSet`` error when S3 endpoint doesn't support tags (https://github.com/ansible-collections/amazon.aws/issues/1607).
- s3_object - when doing a put and specifying ``Content-Type`` in metadata, this module (since 6.0.0) erroneously set the ``Content-Type`` to ``None`` causing the put to fail. Fix now correctly honours the specified ``Content-Type`` (https://github.com/ansible-collections/amazon.aws/issues/1881).

v6.5.0
======

Expand Down
32 changes: 30 additions & 2 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2342,8 +2342,8 @@ releases:
release_summary: 'This release is the last planned minor release of ``amazon.aws``
prior to the release of 7.0.0.

It includes documentation fixes as well as minor changes and bug fixes for the ``ec2_ami`` and ``elb_application_lb_info``
modules.
It includes documentation fixes as well as minor changes and bug fixes for
the ``ec2_ami`` and ``elb_application_lb_info`` modules.

'
fragments:
Expand All @@ -2356,3 +2356,31 @@ releases:
- ec2_region.yml
- release-summary.yml
release_date: '2023-10-03'
6.5.1:
changes:
bugfixes:
- ec2_instance - retry API call if we get ``InvalidInstanceID.NotFound`` error
(https://github.com/ansible-collections/amazon.aws/pull/1650).
- ec2_vpc_subnet - cleanly handle failure when subnet isn't created in time
(https://github.com/ansible-collections/amazon.aws/pull/1848).
- s3_object - Fix typo that caused false deprecation warning when setting `overwrite=latest`
(https://github.com/ansible-collections/amazon.aws/pull/1847).
- s3_object - fixed ``NoSuchTagSet`` error when S3 endpoint doesn't support
tags (https://github.com/ansible-collections/amazon.aws/issues/1607).
- s3_object - when doing a put and specifying ``Content-Type`` in metadata,
this module (since 6.0.0) erroneously set the ``Content-Type`` to ``None``
causing the put to fail. Fix now correctly honours the specified ``Content-Type``
(https://github.com/ansible-collections/amazon.aws/issues/1881).
minor_changes:
- ec2_vpc_subnet - use ``wait_timeout`` to also control maximum time to wait
for initial creation of subnets (https://github.com/ansible-collections/amazon.aws/pull/1848).
release_summary: This release includes several bugfixes.
fragments:
- 1607-NoSuchTagSet.yml
- 1650-fix-invalidinstanceid-notfound.yml
- 1799-s3_object-bucket.yml
- 1847-s3_object-fix-false-deprecation-warning.yml
- 1848-ec2_vpc_subnet-wait-creation.yml
- 1881-allow-s3_object-to-specify-content-type-in-metadata.yml
- release_summary.yml
release_date: '2023-12-07'
2 changes: 0 additions & 2 deletions changelogs/fragments/1607-NoSuchTagSet.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1650-fix-invalidinstanceid-notfound.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1799-s3_object-bucket.yml

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/1848-ec2_vpc_subnet-wait-creation.yml

This file was deleted.

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.0
version: 6.5.1
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.0"
AMAZON_AWS_COLLECTION_VERSION = "6.5.1"


_collection_info_context = {
Expand Down
Loading