Skip to content

Commit

Permalink
Prep amazon.aws 6.3.0 (ansible-collections#1687)
Browse files Browse the repository at this point in the history
* Prep amazon.aws 6.3.0

Signed-off-by: Alina Buzachis <abuzachis@redhat.com>

* update aws user-agent variable with version from galaxy.yml

---------

Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
Co-authored-by: alinabuzachis <alinabuzachis@users.noreply.github.com>
  • Loading branch information
alinabuzachis and alinabuzachis committed Aug 4, 2023
1 parent faaad0e commit 2098130
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 13 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ amazon.aws Release Notes
.. contents:: Topics


v6.3.0
======

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

This release brings some new features and several bugfixes.

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

- rds_cluster - add support for another ``state`` choice called ``started``. This starts the rds cluster (https://github.com/ansible-collections/amazon.aws/pull/1647/files).
- rds_cluster - add support for another ``state`` choice called ``stopped``. This stops the rds cluster (https://github.com/ansible-collections/amazon.aws/pull/1647/files).
- route53 - add a ``wait_id`` return value when a change is done (https://github.com/ansible-collections/amazon.aws/pull/1683).
- route53_health_check - add support for a string list parameter called ``child_health_checks`` to specify health checks that must be healthy for the calculated health check (https://github.com/ansible-collections/amazon.aws/pull/1631).
- route53_health_check - add support for an integer parameter called ``health_threshold`` to specify the minimum number of healthy child health checks that must be healthy for the calculated health check (https://github.com/ansible-collections/amazon.aws/pull/1631).
- route53_health_check - add support for another ``type`` choice called ``CALCULATED`` (https://github.com/ansible-collections/amazon.aws/pull/1631).

Bugfixes
--------

- ec2_vpc_route_table_info - default filters to empty dictionary (https://github.com/ansible-collections/amazon.aws/issues/1668).
- rds_cluster - Add ``AllocatedStorage``, ``DBClusterInstanceClass``, ``StorageType``, ``Iops``, and ``EngineMode`` to the list of parameters that can be passed when creating or modifying a Multi-AZ RDS cluster (https://github.com/ansible-collections/amazon.aws/pull/1657).
- rds_cluster - Allow to pass GlobalClusterIdentifier to rds cluster on creation (https://github.com/ansible-collections/amazon.aws/pull/1663)."

v6.2.0
======

Expand All @@ -25,12 +50,12 @@ Minor 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).
- 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)
- 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).
- 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)
- 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
Expand Down
45 changes: 40 additions & 5 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2177,17 +2177,14 @@ releases:
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).
- 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)
- 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
Expand All @@ -2197,6 +2194,9 @@ releases:
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).
- 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)
- 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:
Expand Down Expand Up @@ -2231,3 +2231,38 @@ releases:
name: iam_instance_profile_info
namespace: ''
release_date: '2023-07-05'
6.3.0:
changes:
bugfixes:
- ec2_vpc_route_table_info - default filters to empty dictionary (https://github.com/ansible-collections/amazon.aws/issues/1668).
- rds_cluster - Add ``AllocatedStorage``, ``DBClusterInstanceClass``, ``StorageType``,
``Iops``, and ``EngineMode`` to the list of parameters that can be passed
when creating or modifying a Multi-AZ RDS cluster (https://github.com/ansible-collections/amazon.aws/pull/1657).
- rds_cluster - Allow to pass GlobalClusterIdentifier to rds cluster on creation
(https://github.com/ansible-collections/amazon.aws/pull/1663)."
minor_changes:
- rds_cluster - add support for another ``state`` choice called ``started``.
This starts the rds cluster (https://github.com/ansible-collections/amazon.aws/pull/1647/files).
- rds_cluster - add support for another ``state`` choice called ``stopped``.
This stops the rds cluster (https://github.com/ansible-collections/amazon.aws/pull/1647/files).
- route53 - add a ``wait_id`` return value when a change is done (https://github.com/ansible-collections/amazon.aws/pull/1683).
- route53_health_check - add support for a string list parameter called ``child_health_checks``
to specify health checks that must be healthy for the calculated health check
(https://github.com/ansible-collections/amazon.aws/pull/1631).
- route53_health_check - add support for an integer parameter called ``health_threshold``
to specify the minimum number of healthy child health checks that must be
healthy for the calculated health check (https://github.com/ansible-collections/amazon.aws/pull/1631).
- route53_health_check - add support for another ``type`` choice called ``CALCULATED``
(https://github.com/ansible-collections/amazon.aws/pull/1631).
release_summary: This release brings some new features and several bugfixes.
fragments:
- 1631-route53_health_check-added-calculcated.yml
- 1647-add-type-started-and-stopped.yml
- 1683-route53-wait_id.yml
- 20230704-add_github_workflow.yml
- 20230707-backup_selection-doc-fix.yml
- 20230713-rds_cluster-fix_params_passage.yml
- 20230725-rds_cluster-fix.yml
- ec2_vpc_route_table_info-filter-fix.yml
- release_summary.yml
release_date: '2023-08-03'
2 changes: 0 additions & 2 deletions changelogs/fragments/20230707-backup_selection-doc-fix.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20230725-rds_cluster-fix.yml

This file was deleted.

0 comments on commit 2098130

Please sign in to comment.