Skip to content

Commit 52ad905

Browse files
authored
Prep amazon.aws 9.1.1 release (#2449)
SUMMARY Release prep for v9.1.1. Reviewed-by: GomathiselviS <[email protected]> Reviewed-by: Mark Chappell
1 parent 39f423f commit 52ad905

11 files changed

+48
-23
lines changed

CHANGELOG.rst

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ amazon.aws Release Notes
44

55
.. contents:: Topics
66

7+
v9.1.1
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release includes bug fixes for the cloudformation, ec2_security_group, lambda, rds_cluster, and ec2_vpc_net modules as well as one for the ec2 module_util.
14+
15+
Bugfixes
16+
--------
17+
18+
- cloudformation - Fix bug where termination protection is not updated when create_changeset=true is used for stack updates (https://github.com/ansible-collections/amazon.aws/pull/2391).
19+
- ec2_security_group - Fix the diff mode issue when creating a security group containing a rule with a managed prefix list (https://github.com/ansible-collections/amazon.aws/issues/2373).
20+
- ec2_vpc_net - handle ipv6_cidr ``false`` and no Ipv6CidrBlockAssociationSet in vpc (https://github.com/ansible-collections/amazon.aws/pull/2374).
21+
- lambda - Remove non UTF-8 data (contents of Lambda ZIP file) from the module output to avoid Ansible error (https://github.com/ansible-collections/amazon.aws/issues/2386).
22+
- module_utils/ec2 - catch error code ``InvalidElasticIpID.NotFound`` on function ``create_nat_gateway()``, sometimes the ``allocate_address`` API calls will return the ID for a new elastic IP resource before it can be consistently referenced (https://github.com/ansible-collections/amazon.aws/issues/1872).
23+
- rds_cluster - Fix issue occurring when updating RDS cluster domain (https://github.com/ansible-collections/amazon.aws/issues/2390).
24+
725
v9.1.0
826
======
927

changelogs/changelog.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -3536,3 +3536,31 @@ releases:
35363536
name: rds_instance_param_group_info
35373537
namespace: ''
35383538
release_date: '2024-12-05'
3539+
9.1.1:
3540+
changes:
3541+
bugfixes:
3542+
- cloudformation - Fix bug where termination protection is not updated when
3543+
create_changeset=true is used for stack updates (https://github.com/ansible-collections/amazon.aws/pull/2391).
3544+
- ec2_security_group - Fix the diff mode issue when creating a security group
3545+
containing a rule with a managed prefix list (https://github.com/ansible-collections/amazon.aws/issues/2373).
3546+
- ec2_vpc_net - handle ipv6_cidr ``false`` and no Ipv6CidrBlockAssociationSet
3547+
in vpc (https://github.com/ansible-collections/amazon.aws/pull/2374).
3548+
- lambda - Remove non UTF-8 data (contents of Lambda ZIP file) from the module
3549+
output to avoid Ansible error (https://github.com/ansible-collections/amazon.aws/issues/2386).
3550+
- module_utils/ec2 - catch error code ``InvalidElasticIpID.NotFound`` on function
3551+
``create_nat_gateway()``, sometimes the ``allocate_address`` API calls will
3552+
return the ID for a new elastic IP resource before it can be consistently
3553+
referenced (https://github.com/ansible-collections/amazon.aws/issues/1872).
3554+
- rds_cluster - Fix issue occurring when updating RDS cluster domain (https://github.com/ansible-collections/amazon.aws/issues/2390).
3555+
release_summary: This release includes bug fixes for the cloudformation, ec2_security_group,
3556+
lambda, rds_cluster, and ec2_vpc_net modules as well as one for the ec2 module_util.
3557+
fragments:
3558+
- 20241127-rds_cluster-fix-issue-occurring-when-updating-domain.yml
3559+
- 20241129-ec2_security_group-fix-issue-with-with-mode.yaml
3560+
- 20241206-ec2_nat_gateway-retry-on-invalid-elastic-ip-id.yaml
3561+
- 2386-lambda-remove-non-utf-8-output.yml
3562+
- 2391-cloudformation-update-stack-termination_protection.yml
3563+
- 9.1.1.yml
3564+
- handle_vpc_ipv6_false.yml
3565+
- tests-fqcn.yml
3566+
release_date: '2025-01-13'

changelogs/fragments/20241127-rds_cluster-fix-issue-occurring-when-updating-domain.yml

-3
This file was deleted.

changelogs/fragments/20241129-ec2_security_group-fix-issue-with-with-mode.yaml

-3
This file was deleted.

changelogs/fragments/20241206-ec2_nat_gateway-retry-on-invalid-elastic-ip-id.yaml

-3
This file was deleted.

changelogs/fragments/2386-lambda-remove-non-utf-8-output.yml

-2
This file was deleted.

changelogs/fragments/2391-cloudformation-update-stack-termination_protection.yml

-3
This file was deleted.

changelogs/fragments/handle_vpc_ipv6_false.yml

-3
This file was deleted.

changelogs/fragments/tests-fqcn.yml

-4
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: amazon
33
name: aws
4-
version: 9.1.0
4+
version: 9.1.1
55
readme: README.md
66
authors:
77
- Ansible (https://github.com/ansible)

plugins/module_utils/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
55

66
AMAZON_AWS_COLLECTION_NAME = "amazon.aws"
7-
AMAZON_AWS_COLLECTION_VERSION = "9.1.0"
7+
AMAZON_AWS_COLLECTION_VERSION = "9.1.1"
88

99

1010
_collection_info_context = {

0 commit comments

Comments
 (0)