Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog with the amazon.aws 5.5.0 and 4.5.0 info #1525

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,45 @@ amazon.aws Release Notes
.. contents:: Topics


v5.5.0
======

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

This release contains a number of bugfixes, new features and new modules. This is the last planned minor release prior to the release of version 6.0.0.


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

- Add connectivity_type to ec2_vpc_nat_gateway module (https://github.com/ansible-collections/amazon.aws/pull/1267).
- cloudwatch - Add metrics and extended_statistic keys to cloudwatch module (https://github.com/ansible-collections/amazon.aws/pull/1133).
- ec2_ami - add support for BootMode, TpmSupport, UefiData params (https://github.com/ansible-collections/amazon.aws/pull/1037).
- ec2_metadata_facts - added support to query instance tags in metadata (https://github.com/ansible-collections/amazon.aws/pull/1186).
- kms_key - Add multi_region option to create_key (https://github.com/ansible-collections/amazon.aws/pull/1290).
- lambda - add support for function layers when creating or updating lambda function (https://github.com/ansible-collections/amazon.aws/pull/1118).
- lambda_event - Added support to set FunctionResponseTypes when creating lambda event source mappings (https://github.com/ansible-collections/amazon.aws/pull/1209).
- module_utils/elbv2 - removed compatibility code for ``botocore < 1.10.30`` (https://github.com/ansible-collections/amazon.aws/pull/1477).
- rds_cluster - New ``engine_mode`` parameter (https://github.com/ansible-collections/amazon.aws/pull/941).
- rds_cluster - add new options (e.g., ``db_cluster_instance_class``, ``allocated_storage``, ``storage_type``, ``iops``) (https://github.com/ansible-collections/amazon.aws/pull/1191).
- rds_cluster - update list of supported engines with ``mysql`` and ``postgres`` (https://github.com/ansible-collections/amazon.aws/pull/1191).
- s3_bucket - ensure ``public_access`` is configured before updating policies (https://github.com/ansible-collections/amazon.aws/pull/1511).

Bugfixes
--------

- cloudwatch_metric_alarm - Don't consider ``StateTransitionedTimestamp`` in change detection. (https://github.com/ansible-collections/amazon.aws/pull/1440).
- ec2_instance - Pick up ``app_callback -> set_password`` rather than ``app_callback -> set_passwd`` (https://github.com/ansible-collections/amazon.aws/issues/1449).
- lambda_info - Do not convert environment variables to snake_case when querying lambda config. (https://github.com/ansible-collections/amazon.aws/pull/1457).
- rds_instance - fix type of ``promotion_tier`` as passed to the APIs (https://github.com/ansible-collections/amazon.aws/pull/1475).

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

- lambda_layer - Creates an AWS Lambda layer or deletes an AWS Lambda layer version
- lambda_layer_info - List lambda layer or lambda layer versions

v5.4.0
======

Expand Down Expand Up @@ -285,6 +324,25 @@ New Modules
- cloudwatch_metric_alarm_info - Gather information about the alarms for the specified metric
- s3_object_info - Gather information about objects in S3

v4.5.0
======

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

This release contains a minor bugfix for the ``ec2_vol`` module, some minor work on the ``ec2_key`` module, and various documentation fixes. This is the last planned release of the 4.x series.


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

- ec2_key - minor refactoring and improved unit-tests coverage (https://github.com/ansible-collections/amazon.aws/pull/1288).

Bugfixes
--------

- ec2_vol - handle ec2_vol.tags when the associated instance already exists (https://github.com/ansible-collections/amazon.aws/pull/1071).

v4.4.0
======

Expand Down
85 changes: 85 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1108,6 +1108,25 @@ releases:
- 20230106-ec2_vol.yml
- release_summary.yml
release_date: '2023-01-09'
4.5.0:
changes:
bugfixes:
- ec2_vol - handle ec2_vol.tags when the associated instance already exists
(https://github.com/ansible-collections/amazon.aws/pull/1071).
minor_changes:
- ec2_key - minor refactoring and improved unit-tests coverage (https://github.com/ansible-collections/amazon.aws/pull/1288).
release_summary: 'This release contains a minor bugfix for the ``ec2_vol`` module,
some minor work on the ``ec2_key`` module, and various documentation fixes. This
is the last planned release of the 4.x series.

'
fragments:
- 1071-ec2_vol_tags_idempotent.yaml
- 1357-subnet-example.yml
- 1395-s3-encryption.yml
- release-notes.yml
- unit-tests_test_ec2_key_only.yaml
release_date: '2023-05-05'
5.0.0:
changes:
breaking_changes:
Expand Down Expand Up @@ -1671,3 +1690,69 @@ releases:
- 5.4.0-release.yml
- 5.4.0-route53_health_check.yml
release_date: '2023-03-27'
5.5.0:
changes:
bugfixes:
- cloudwatch_metric_alarm - Don't consider ``StateTransitionedTimestamp`` in
change detection. (https://github.com/ansible-collections/amazon.aws/pull/1440).
- ec2_instance - Pick up ``app_callback -> set_password`` rather than ``app_callback
-> set_passwd`` (https://github.com/ansible-collections/amazon.aws/issues/1449).
- lambda_info - Do not convert environment variables to snake_case when querying
lambda config. (https://github.com/ansible-collections/amazon.aws/pull/1457).
- rds_instance - fix type of ``promotion_tier`` as passed to the APIs (https://github.com/ansible-collections/amazon.aws/pull/1475).
minor_changes:
- Add connectivity_type to ec2_vpc_nat_gateway module (https://github.com/ansible-collections/amazon.aws/pull/1267).
- cloudwatch - Add metrics and extended_statistic keys to cloudwatch module
(https://github.com/ansible-collections/amazon.aws/pull/1133).
- ec2_ami - add support for BootMode, TpmSupport, UefiData params (https://github.com/ansible-collections/amazon.aws/pull/1037).
- ec2_metadata_facts - added support to query instance tags in metadata (https://github.com/ansible-collections/amazon.aws/pull/1186).
- kms_key - Add multi_region option to create_key (https://github.com/ansible-collections/amazon.aws/pull/1290).
- lambda - add support for function layers when creating or updating lambda
function (https://github.com/ansible-collections/amazon.aws/pull/1118).
- lambda_event - Added support to set FunctionResponseTypes when creating lambda
event source mappings (https://github.com/ansible-collections/amazon.aws/pull/1209).
- module_utils/elbv2 - removed compatibility code for ``botocore < 1.10.30``
(https://github.com/ansible-collections/amazon.aws/pull/1477).
- rds_cluster - New ``engine_mode`` parameter (https://github.com/ansible-collections/amazon.aws/pull/941).
- rds_cluster - add new options (e.g., ``db_cluster_instance_class``, ``allocated_storage``,
``storage_type``, ``iops``) (https://github.com/ansible-collections/amazon.aws/pull/1191).
- rds_cluster - update list of supported engines with ``mysql`` and ``postgres``
(https://github.com/ansible-collections/amazon.aws/pull/1191).
- s3_bucket - ensure ``public_access`` is configured before updating policies
(https://github.com/ansible-collections/amazon.aws/pull/1511).
release_summary: 'This release contains a number of bugfixes, new features and
new modules. This is the last planned minor release prior to the release
of version 6.0.0.

'
fragments:
- 1037-ec2_ami-add-support-for-boot_mode-tpm_support-uefi_data.yml
- 1133-add_metrics_cloudwatch.yml
- 1186-ec2_metadata_facts-query-instance-metadata-tags.yml
- 1191-rds_cluster-new_options.yml
- 1209-lambda_event-add-support-for-function_response_types.yml
- 1258-ec2_instance.yml
- 1267-ec2_vpc_nat_gateway_connectivitytype.yml
- 1290-create_multi_region_key.yml
- 1440-cloudwatch_metric_alarm-fix-change-detection.yml
- 1457-lambda_info-fix-env-var-in-output.yml
- 1474-ec2_vol.yml
- 1475-rds_instance-promotion-tier.yml
- 1477-elbv2-botocore.yml
- 1505-ec2_instance_test_fixes.yml
- 1511-s3_bucket-public_access.yml
- 20230424-ec2_instance-app_callback.yml
- 20230502-rds_cluster-engine.yml
- 20230503-rds_cluster-engine-rds_cluster_snapshot.yml
- fix_version_added.yml
- lambda-add-support-for-layers.yml
- rds_cluster_engine_mode.yaml
- release-summary.yml
modules:
- description: Creates an AWS Lambda layer or deletes an AWS Lambda layer version
name: lambda_layer
namespace: ''
- description: List lambda layer or lambda layer versions
name: lambda_layer_info
namespace: ''
release_date: '2023-05-04'

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1133-add_metrics_cloudwatch.yml

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1191-rds_cluster-new_options.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1258-ec2_instance.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1290-create_multi_region_key.yml

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1474-ec2_vol.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1475-rds_instance-promotion-tier.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1477-elbv2-botocore.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1505-ec2_instance_test_fixes.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1511-s3_bucket-public_access.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20230424-ec2_instance-app_callback.yml

This file was deleted.

10 changes: 0 additions & 10 deletions changelogs/fragments/fix_version_added.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/lambda-add-support-for-layers.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/rds_cluster_engine_mode.yaml

This file was deleted.