Skip to content

Commit

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

SUMMARY

Prep amazon.aws 7.1.0

ISSUE TYPE


Feature Pull Request

COMPONENT NAME

several

Reviewed-by: Mark Chappell
Reviewed-by: Helen Bailey <[email protected]>
Reviewed-by: Mike Graves <[email protected]>
Reviewed-by: GomathiselviS
  • Loading branch information
alinabuzachis authored Dec 5, 2023
1 parent f42f76a commit 3801882
Show file tree
Hide file tree
Showing 15 changed files with 83 additions and 34 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,39 @@ amazon.aws Release Notes
.. contents:: Topics


v7.1.0
======

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

This release brings some new features and several bugfixes.

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

- autoscaling_group - minor PEP8 whitespace sanity fixes (https://github.com/ansible-collections/amazon.aws/pull/1846).
- ec2_ami_info - simplify parameters to ``get_image_attribute`` to only pass ID of image (https://github.com/ansible-collections/amazon.aws/pull/1846).
- ec2_eip - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_security_group - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/pull/1844)
- ec2_vpc_igw - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_vpc_route_table - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_vpc_subnet - the default value for ``tags`` has been changed from ``{}`` to ``None``, to remove tags from a subnet an empty map must be explicitly passed to the module (https://github.com/ansible-collections/amazon.aws/pull/1876).
- ec2_vpc_subnet - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- 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).
- iam_group - add support for setting group path (https://github.com/ansible-collections/amazon.aws/pull/1892).
- iam_group - adds attached_policies return value (https://github.com/ansible-collections/amazon.aws/pull/1892).
- iam_group - code refactored to avoid single long function (https://github.com/ansible-collections/amazon.aws/pull/1892).
- ec2_instance - add support for AdditionalInfo option when creating an instance (https://github.com/ansible-collections/amazon.aws/pull/1828).
- rds_instance_snapshot - minor PEP8 whitespace sanity fixes (https://github.com/ansible-collections/amazon.aws/pull/1846).

Bugfixes
--------

- 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 - 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).

v7.0.0
======

Expand Down
48 changes: 48 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2578,3 +2578,51 @@ releases:
name: rds_global_cluster_info
namespace: ''
release_date: '2023-11-02'
7.1.0:
changes:
bugfixes:
- 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 - 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:
- autoscaling_group - minor PEP8 whitespace sanity fixes (https://github.com/ansible-collections/amazon.aws/pull/1846).
- ec2_ami_info - simplify parameters to ``get_image_attribute`` to only pass
ID of image (https://github.com/ansible-collections/amazon.aws/pull/1846).
- ec2_eip - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_security_group - use ``ResourceTags`` to set initial tags upon creation
(https://github.com/ansible-collections/amazon.aws/pull/1844)
- ec2_vpc_igw - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_vpc_route_table - use ``ResourceTags`` to set initial tags upon creation
(https://github.com/ansible-collections/amazon.aws/issues/1843)
- ec2_vpc_subnet - the default value for ``tags`` has been changed from ``{}``
to ``None``, to remove tags from a subnet an empty map must be explicitly
passed to the module (https://github.com/ansible-collections/amazon.aws/pull/1876).
- ec2_vpc_subnet - use ``ResourceTags`` to set initial tags upon creation (https://github.com/ansible-collections/amazon.aws/issues/1843)
- 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).
- iam_group - add support for setting group path (https://github.com/ansible-collections/amazon.aws/pull/1892).
- iam_group - adds attached_policies return value (https://github.com/ansible-collections/amazon.aws/pull/1892).
- iam_group - code refactored to avoid single long function (https://github.com/ansible-collections/amazon.aws/pull/1892).
- ec2_instance - add support for AdditionalInfo option when creating
an instance (https://github.com/ansible-collections/amazon.aws/pull/1828).
- rds_instance_snapshot - minor PEP8 whitespace sanity fixes (https://github.com/ansible-collections/amazon.aws/pull/1846).
release_summary: This release brings some new features and several bugfixes.
fragments:
- 1828-ec2_instance_additional_info.yml
- 1843-ec2_eip.yml
- 1843-ec2_security_group-tags.yml
- 1843-ec2_vpc_igw.yml
- 1843-ec2_vpc_route_table.yml
- 1843-ec2_vpc_subnet.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
- 20231110-sanity.yml
- 20231130-iam_group.yml
- release_summary.yml
release_date: '2023-12-05'
2 changes: 0 additions & 2 deletions changelogs/fragments/1828-ec2_instance_additional_info.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1843-ec2_eip.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1843-ec2_security_group-tags.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1843-ec2_vpc_igw.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1843-ec2_vpc_route_table.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/1843-ec2_vpc_subnet.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.

4 changes: 0 additions & 4 deletions changelogs/fragments/20231110-sanity.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/20231130-iam_group.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: 7.0.0
version: 7.1.0
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 = "7.0.0"
AMAZON_AWS_COLLECTION_VERSION = "7.1.0"


_collection_info_context = {
Expand Down

0 comments on commit 3801882

Please sign in to comment.