Skip to content

Commit

Permalink
Update changelog to reflect the 6.2.0 release (ansible-collections#1648)
Browse files Browse the repository at this point in the history
Update changelog to reflect the 6.2.0 release

SUMMARY

Update changelog to reflect the 6.2.0 release

ISSUE TYPE


Docs Pull Request

COMPONENT NAME

ADDITIONAL INFORMATION

Reviewed-by: Helen Bailey <[email protected]>
Reviewed-by: Mike Graves <[email protected]>
  • Loading branch information
alinabuzachis authored Jul 24, 2023
1 parent cea9bbb commit f36b02b
Show file tree
Hide file tree
Showing 13 changed files with 91 additions and 34 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,40 @@ amazon.aws Release Notes
.. contents:: Topics


v6.2.0
======

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

This release brings some new modules, features, and several bugfixes.

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

- backup_selection - add validation and documentation for all conditions suboptions (https://github.com/ansible-collections/amazon.aws/pull/1633).
- ec2_instance - refactored ARN validation handling (https://github.com/ansible-collections/amazon.aws/pull/1619).
- iam_user - refactored ARN validation handling (https://github.com/ansible-collections/amazon.aws/pull/1619).
- module_utils.arn - add ``resource_id`` and ``resource_type`` to ``parse_aws_arn`` return values (https://github.com/ansible-collections/amazon.aws/pull/1619).
- module_utils.arn - added ``validate_aws_arn`` function to handle common pattern matching for ARNs (https://github.com/ansible-collections/amazon.aws/pull/1619).

Bugfixes
--------

- cloudwatchevent_rule - Fixes changed status to report False when no change has been made. The module had incorrectly always reported a change. (https://github.com/ansible-collections/amazon.aws/pull/1589)
- lambda_execute - Fixes to the stack trace output, where it does not contain spaces between each character. The module had incorrectly always outputted extra spaces between each character. (https://github.com/ansible-collections/amazon.aws/pull/1615)
- backup_plan - Use existing ``scrub_none_values`` function from module_utils to remove None values from nested dicts in supplied params. Nested None values were being retained and causing an error when sent through to the boto3 client operation (https://github.com/ansible-collections/amazon.aws/pull/1611).
- backup_vault - fix error when updating tags on a backup vault by using the correct boto3 client methods for tagging and untagging backup resources (https://github.com/ansible-collections/amazon.aws/pull/1610).
- ec2_vpc_nat_gateway - adding a boolean parameter called ``default_create`` to allow users to have the option to choose whether they want to display an error message or create a NAT gateway when an EIP address is not found. The module (ec2_vpc_nat_gateway) had incorrectly failed silently if EIP didn't exist (https://github.com/ansible-collections/amazon.aws/issues/1295).
- ec2_vpc_nat_gateway - fixes to nat gateway so that when the user creates a private NAT gateway, an Elastic IP address should not be allocated. The module had inncorrectly always allocate elastic IP address when creating private nat gateway (https://github.com/ansible-collections/amazon.aws/pull/1632).
- module_utils.backup - get_selection_details fix empty list returned when multiple backup selections exist (https://github.com/ansible-collections/amazon.aws/pull/1633).

New Modules
-----------

- iam_instance_profile - manage IAM instance profiles
- iam_instance_profile_info - gather information on IAM instance profiles

v6.1.0
======

Expand Down
57 changes: 57 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2174,3 +2174,60 @@ releases:
- release_summary.yml
- test-reqs.yml
release_date: '2023-06-07'
6.2.0:
changes:
bugfixes:
- cloudwatchevent_rule - Fixes changed status to report False when no change has been made. The module
had incorrectly always reported a change. (https://github.com/ansible-collections/amazon.aws/pull/1589)
- lambda_execute - Fixes to the stack trace output, where it does not contain spaces between
each character. The module had incorrectly always outputted extra spaces between
each character. (https://github.com/ansible-collections/amazon.aws/pull/1615)
- backup_plan - Use existing ``scrub_none_values`` function from module_utils
to remove None values from nested dicts in supplied params. Nested None values
were being retained and causing an error when sent through to the boto3 client
operation (https://github.com/ansible-collections/amazon.aws/pull/1611).
- backup_vault - fix error when updating tags on a backup vault by using the
correct boto3 client methods for tagging and untagging backup resources (https://github.com/ansible-collections/amazon.aws/pull/1610).
- ec2_vpc_nat_gateway - adding a boolean parameter called ``default_create``
to allow users to have the option to choose whether they want to display an
error message or create a NAT gateway when an EIP address is not found. The
module (ec2_vpc_nat_gateway) had incorrectly failed silently if EIP didn't
exist (https://github.com/ansible-collections/amazon.aws/issues/1295).
- ec2_vpc_nat_gateway - fixes to nat gateway so that when the user creates a
private NAT gateway, an Elastic IP address should not be allocated. The module
had inncorrectly always allocate elastic IP address when creating private
nat gateway (https://github.com/ansible-collections/amazon.aws/pull/1632).
- module_utils.backup - get_selection_details fix empty list returned when multiple
backup selections exist (https://github.com/ansible-collections/amazon.aws/pull/1633).
minor_changes:
- backup_selection - add validation and documentation for all conditions suboptions
(https://github.com/ansible-collections/amazon.aws/pull/1633).
- ec2_instance - refactored ARN validation handling (https://github.com/ansible-collections/amazon.aws/pull/1619).
- iam_user - refactored ARN validation handling (https://github.com/ansible-collections/amazon.aws/pull/1619).
- module_utils.arn - add ``resource_id`` and ``resource_type`` to ``parse_aws_arn``
return values (https://github.com/ansible-collections/amazon.aws/pull/1619).
- module_utils.arn - added ``validate_aws_arn`` function to handle common pattern
matching for ARNs (https://github.com/ansible-collections/amazon.aws/pull/1619).
release_summary: This release brings some new modules, features, and several
bugfixes.
fragments:
- 1589-return_false_when_no_change..yml
- 1604-c2_vpc_nat_gateway-fails-silently.yml
- 1615-no_formatted_with_extra_space.yml
- 1632-changes-to-no-allocate-eip-when-connectivity_type=private.yml
- 1633-backup-selection-conditions.yml
- 1843-iam_instance_profile.yml
- 1846-arn-validation.yml
- 20230506-autoscaling_group-fix_sanity.yml
- 202306012-backup_plan-remove-none-from-nested-params.yml
- 20230612-backup_vault-fix-tag-update.yml
- 20230627-ci-fixup.yml
- release_summary.yml
modules:
- description: manage IAM instance profiles
name: iam_instance_profile
namespace: ''
- description: gather information on IAM instance profiles
name: iam_instance_profile_info
namespace: ''
release_date: '2023-07-05'
3 changes: 0 additions & 3 deletions changelogs/fragments/1589-return_false_when_no_change..yml

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1615-no_formatted_with_extra_space.yml

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/1633-backup-selection-conditions.yml

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/1846-arn-validation.yml

This file was deleted.

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/20230612-backup_vault-fix-tag-update.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/20230627-ci-fixup.yml

This file was deleted.

0 comments on commit f36b02b

Please sign in to comment.