Skip to content

Commit d84c14b

Browse files
authored
Prep amazon.aws 8.2.3 release (#2514)
SUMMARY Release prep for v8.2.3. Reviewed-by: GomathiselviS <[email protected]> Reviewed-by: Mike Graves <[email protected]>
1 parent 0d5f8a4 commit d84c14b

8 files changed

+33
-14
lines changed

CHANGELOG.rst

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

55
.. contents:: Topics
66

7+
v8.2.3
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release includes bugfixes for the ``ec2_instance`` and ``s3_bucket`` modules.
14+
15+
Bugfixes
16+
--------
17+
18+
- ec2_instance - Fix issue where EC2 instance module failed to apply security groups when both `network` and `vpc_subnet_id`` were specified, caused by passing `None` to discover_security_groups() (https://github.com/ansible-collections/amazon.aws/pull/2488).
19+
- s3_bucket - Do not use default region as location constraint when creating bucket on ceph cluster (https://github.com/ansible-collections/amazon.aws/issues/2420).
20+
721
v8.2.2
822
======
923

changelogs/changelog.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -3198,3 +3198,20 @@ releases:
31983198
- 8.2.2.yml
31993199
- handle_vpc_ipv6_false.yml
32003200
release_date: '2025-01-14'
3201+
8.2.3:
3202+
changes:
3203+
bugfixes:
3204+
- ec2_instance - Fix issue where EC2 instance module failed to apply security
3205+
groups when both `network` and `vpc_subnet_id`` were specified, caused by
3206+
passing `None` to discover_security_groups() (https://github.com/ansible-collections/amazon.aws/pull/2488).
3207+
- s3_bucket - Do not use default region as location constraint when creating
3208+
bucket on ceph cluster (https://github.com/ansible-collections/amazon.aws/issues/2420).
3209+
release_summary: This release includes bugfixes for the ``ec2_instance`` and
3210+
``s3_bucket`` modules.
3211+
fragments:
3212+
- 20250113-s3_bucket-location-constraints-for-ceph-cluster.yml
3213+
- 20250202-assertion-group-name-aws-az-info.yml
3214+
- 2488-ec2_instance-fix-security-group-attachment-issue.yml
3215+
- 8.2.3.yml
3216+
- readme_template_update.yml
3217+
release_date: '2025-02-04'

changelogs/fragments/20250113-s3_bucket-location-constraints-for-ceph-cluster.yml

-3
This file was deleted.

changelogs/fragments/20250202-assertion-group-name-aws-az-info.yml

-3
This file was deleted.

changelogs/fragments/2488-ec2_instance-fix-security-group-attachment-issue.yml

-3
This file was deleted.

changelogs/fragments/readme_template_update.yml

-3
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: 8.2.2
4+
version: 8.2.3
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 = "8.2.2"
7+
AMAZON_AWS_COLLECTION_VERSION = "8.2.3"
88

99
_collection_info_context = {
1010
"name": AMAZON_AWS_COLLECTION_NAME,

0 commit comments

Comments
 (0)