From ee5d5970f6df46b1011bbe10bfcbc3761ab2a73c Mon Sep 17 00:00:00 2001 From: Alina Buzachis Date: Thu, 8 Feb 2024 14:54:38 +0100 Subject: [PATCH] Prep amazon.aws 7.3.0 (#1963) (#1965) Changelog update after release 7.3.0 SUMMARY Changelog update after release 7.3.0 ISSUE TYPE Docs Pull Request Reviewed-by: Helen Bailey --- CHANGELOG.rst | 26 ++++++++++++++++- changelogs/changelog.yaml | 29 +++++++++++++++++++ ...or-serverless_v2_scaling_configuration.yml | 3 -- changelogs/fragments/1939-image_uri.yml | 3 -- changelogs/fragments/1951-error-handler.yml | 3 -- ...info-add-support-for-bucket_versioning.yml | 4 --- .../20240202-backup_plan-idempotency.yml | 6 ---- 7 files changed, 54 insertions(+), 20 deletions(-) delete mode 100644 changelogs/fragments/1839-rds_cluster-add-support-for-serverless_v2_scaling_configuration.yml delete mode 100644 changelogs/fragments/1939-image_uri.yml delete mode 100644 changelogs/fragments/1951-error-handler.yml delete mode 100644 changelogs/fragments/20231211-s3_bucket_info-add-support-for-bucket_versioning.yml delete mode 100644 changelogs/fragments/20240202-backup_plan-idempotency.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e325639f1df..6c74261b4c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,31 @@ amazon.aws Release Notes .. contents:: Topics +v7.3.0 +====== + +Release Summary +--------------- + +The amazon.aws 7.3.0 release includes a number of minor bugfixes, some new features and improvements. + +Minor Changes +------------- + +- backup_plan - Let user to set ``schedule_expression_timezone`` for backup plan rules when when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952). +- iam_user - refactored error handling to use a decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). +- lambda - added support for using ECR images for the function (https://github.com/ansible-collections/amazon.aws/pull/1939). +- module_utils.errors - added a basic error handler decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). +- rds_cluster - Add support for ServerlessV2ScalingConfiguration to create and modify cluster operations (https://github.com/ansible-collections/amazon.aws/pull/1839). +- s3_bucket_info - add parameter ``bucket_versioning`` to return the versioning state of a bucket (https://github.com/ansible-collections/amazon.aws/pull/1919). +- s3_object_info - fix exception raised when listing objects from empty bucket (https://github.com/ansible-collections/amazon.aws/pull/1919). + +Bugfixes +-------- + +- backup_plan - Fix idempotency issue when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952). +- plugins/inventory/aws_ec2 - Fix failure when retrieving information for more than 40 instances with use_ssm_inventory (https://github.com/ansible-collections/amazon.aws/issues/1713). + v7.2.0 ====== @@ -13,7 +38,6 @@ Release Summary This release includes new features and a bugfix. - Minor Changes ------------- diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9e4267a50eb..3c9235f8333 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2739,3 +2739,32 @@ releases: - 20231219-iam-consistency.yml - 20231222-managed_policy.yml release_date: '2024-01-09' + 7.3.0: + changes: + bugfixes: + - backup_plan - Fix idempotency issue when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952). + - plugins/inventory/aws_ec2 - Fix failure when retrieving information for more + than 40 instances with use_ssm_inventory (https://github.com/ansible-collections/amazon.aws/issues/1713). + minor_changes: + - backup_plan - Let user to set ``schedule_expression_timezone`` for backup + plan rules when when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952). + - iam_user - refactored error handling to use a decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). + - lambda - added support for using ECR images for the function (https://github.com/ansible-collections/amazon.aws/pull/1939). + - module_utils.errors - added a basic error handler decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). + - rds_cluster - Add support for ServerlessV2ScalingConfiguration to create and + modify cluster operations (https://github.com/ansible-collections/amazon.aws/pull/1839). + - s3_bucket_info - add parameter ``bucket_versioning`` to return the versioning + state of a bucket (https://github.com/ansible-collections/amazon.aws/pull/1919). + - s3_object_info - fix exception raised when listing objects from empty bucket + (https://github.com/ansible-collections/amazon.aws/pull/1919). + release_summary: The amazon.aws 7.3.0 release includes a number of minor bugfixes, + some new features and improvements. + fragments: + - 1839-rds_cluster-add-support-for-serverless_v2_scaling_configuration.yml + - 1939-image_uri.yml + - 1951-error-handler.yml + - 20231211-s3_bucket_info-add-support-for-bucket_versioning.yml + - 20240129-aws_ec2-inventory-bugfix.yml + - 20240202-backup_plan-idempotency.yml + - release_summary.yml + release_date: '2024-02-06' diff --git a/changelogs/fragments/1839-rds_cluster-add-support-for-serverless_v2_scaling_configuration.yml b/changelogs/fragments/1839-rds_cluster-add-support-for-serverless_v2_scaling_configuration.yml deleted file mode 100644 index 6b822d79b93..00000000000 --- a/changelogs/fragments/1839-rds_cluster-add-support-for-serverless_v2_scaling_configuration.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: -- rds_cluster - Add support for ServerlessV2ScalingConfiguration to create and modify cluster operations (https://github.com/ansible-collections/amazon.aws/pull/1839). diff --git a/changelogs/fragments/1939-image_uri.yml b/changelogs/fragments/1939-image_uri.yml deleted file mode 100644 index 0c6d6531cd4..00000000000 --- a/changelogs/fragments/1939-image_uri.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - lambda - added support for using ECR images for the function (https://github.com/ansible-collections/amazon.aws/pull/1939). diff --git a/changelogs/fragments/1951-error-handler.yml b/changelogs/fragments/1951-error-handler.yml deleted file mode 100644 index a8c958db5f3..00000000000 --- a/changelogs/fragments/1951-error-handler.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- module_utils.errors - added a basic error handler decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). -- iam_user - refactored error handling to use a decorator (https://github.com/ansible-collections/amazon.aws/pull/1951). diff --git a/changelogs/fragments/20231211-s3_bucket_info-add-support-for-bucket_versioning.yml b/changelogs/fragments/20231211-s3_bucket_info-add-support-for-bucket_versioning.yml deleted file mode 100644 index a2b3ccacc63..00000000000 --- a/changelogs/fragments/20231211-s3_bucket_info-add-support-for-bucket_versioning.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - s3_bucket_info - add parameter ``bucket_versioning`` to return the versioning state of a bucket (https://github.com/ansible-collections/amazon.aws/pull/1919). - - s3_object_info - fix exception raised when listing objects from empty bucket (https://github.com/ansible-collections/amazon.aws/pull/1919). \ No newline at end of file diff --git a/changelogs/fragments/20240202-backup_plan-idempotency.yml b/changelogs/fragments/20240202-backup_plan-idempotency.yml deleted file mode 100644 index d98974cb2d6..00000000000 --- a/changelogs/fragments/20240202-backup_plan-idempotency.yml +++ /dev/null @@ -1,6 +0,0 @@ -bugfixes: - - backup_plan - Fix idempotency issue when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952). - -minor_changes: - - backup_plan - Let user to set ``schedule_expression_timezone`` for - backup plan rules when when using botocore >= 1.31.36 (https://github.com/ansible-collections/amazon.aws/issues/1952).