Skip to content

Commit

Permalink
Prep amazon.aws 6.5.1 (#1905)
Browse files Browse the repository at this point in the history
Prep amazon.aws 6.5.1

SUMMARY

Prep amazon.aws 6.5.1

ISSUE TYPE


Feature Pull Request

COMPONENT NAME

several

Reviewed-by: Helen Bailey <[email protected]>
Reviewed-by: Mike Graves <[email protected]>
Reviewed-by: Mark Chappell
  • Loading branch information
alinabuzachis authored Dec 7, 2023
1 parent 34b7a30 commit 4645337
Show file tree
Hide file tree
Showing 10 changed files with 54 additions and 21 deletions.
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

0 comments on commit 4645337

Please sign in to comment.