Skip to content

Commit

Permalink
Prep amazon.aws 8.2.1 release (#2284)
Browse files Browse the repository at this point in the history
SUMMARY

Prep amazon.aws 8.2.1 release. Release date is set to tomorrow.

ISSUE TYPE


Bugfix Pull Request

COMPONENT NAME

ADDITIONAL INFORMATION

Reviewed-by: Mark Chappell
Reviewed-by: Mandar Kulkarni <[email protected]>
  • Loading branch information
alinabuzachis authored Sep 4, 2024
1 parent 689024f commit e0329ff
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ amazon.aws Release Notes

.. contents:: Topics

v8.2.1
======

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

This is a bugfix release for the ``iam_role`` module that resolves the issue where IAM instance profiles were being created when ``create_instance_profile`` was set to ``false`` and addresses the ``EntityAlreadyExists`` exception when the instance profile already existed.

Bugfixes
--------

- iam_role - fixes ``EntityAlreadyExists`` exception when ``create_instance_profile`` was set to ``false`` and the instance profile already existed (https://github.com/ansible-collections/amazon.aws/issues/2102).
- iam_role - fixes issue where IAM instance profiles were created when ``create_instance_profile`` was set to ``false`` (https://github.com/ansible-collections/amazon.aws/issues/2281).

v8.2.0
======

Expand All @@ -15,7 +29,7 @@ The amazon.aws 8.2.0 release includes a number of bugfixes, some new features an
Minor Changes
-------------

- cloudwatch_metric_alarm - add support for ``evaluate_low_sample_count_percentile`` parameter.
- cloudwatch_metric_alarm - add support for ``evaluate_low_sample_count_percentile``` parameter.
- cloudwatch_metric_alarm - support DatapointsToAlarm config (https://github.com/ansible-collections/amazon.aws/pull/2196).
- ec2_ami - Add support for uefi-preferred boot mode (https://github.com/ansible-collections/amazon.aws/pull/2253).
- ec2_instance - Add support for ``network_interfaces`` and ``network_interfaces_ids`` options replacing deprecated option ``network`` (https://github.com/ansible-collections/amazon.aws/pull/2123).
Expand Down
15 changes: 15 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3149,3 +3149,18 @@ releases:
- update_return_block_route53_health_check.yml
- use_t3a_micro_in_tests.yml
release_date: '2024-09-03'
8.2.1:
changes:
bugfixes:
- iam_role - fixes ``EntityAlreadyExists`` exception when ``create_instance_profile``
was set to ``false`` and the instance profile already existed (https://github.com/ansible-collections/amazon.aws/issues/2102).
- iam_role - fixes issue where IAM instance profiles were created when ``create_instance_profile``
was set to ``false`` (https://github.com/ansible-collections/amazon.aws/issues/2281).
release_summary: This is a bugfix release for the ``iam_role`` module that resolves
the issue where IAM instance profiles were being created when ``create_instance_profile``
was set to ``false`` and addresses the ``EntityAlreadyExists`` exception when
the instance profile already existed.
fragments:
- 2281-iam_role-support-not-creating.yml
- release_summary.yml
release_date: '2024-09-05'
4 changes: 0 additions & 4 deletions changelogs/fragments/2281-iam_role-support-not-creating.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: 8.2.0
version: 8.2.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 = "8.2.0"
AMAZON_AWS_COLLECTION_VERSION = "8.2.1"


_collection_info_context = {
Expand Down

0 comments on commit e0329ff

Please sign in to comment.