From 02bcf22afbc041fb195c74d10e981d373ee1fb1d Mon Sep 17 00:00:00 2001 From: Alina Buzachis Date: Wed, 6 Mar 2024 12:55:35 +0100 Subject: [PATCH] Prep amazon.aws 6.5.3 (#2010) Prep amazon.aws 6.5.3 SUMMARY Prep amazon.aws 6.5.3 Release date is March 5th. ISSUE TYPE Feature Pull Request COMPONENT NAME several Reviewed-by: GomathiselviS Reviewed-by: Mark Chappell --- CHANGELOG.rst | 14 ++++++++++++++ changelogs/changelog.yaml | 16 ++++++++++++++++ ...ix-json-input-handling-for-input_template.yml | 3 --- ...is-missing-and-on_missing-is-set-to-warn.yaml | 3 --- .../fragments/remove_rendundant_workflow.yml | 3 --- galaxy.yml | 2 +- plugins/module_utils/common.py | 2 +- 7 files changed, 32 insertions(+), 11 deletions(-) delete mode 100644 changelogs/fragments/1883-cloudwatchevent_rule-fix-json-input-handling-for-input_template.yml delete mode 100644 changelogs/fragments/20240212-lookup-secretsmanager_secret-fix-issue-when-nested-is-missing-and-on_missing-is-set-to-warn.yaml delete mode 100644 changelogs/fragments/remove_rendundant_workflow.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ba2a4397dfd..fc8e4a7e8d2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ amazon.aws Release Notes .. contents:: Topics +v6.5.3 +====== + +Release Summary +--------------- + +This release includes bugfixes for the``cloudwatchevent_rule`` module and ``secretsmanager_secret`` lookup plugin. + +Bugfixes +-------- + +- cloudwatchevent_rule - Fix to avoid adding quotes to JSON input for provided input_template (https://github.com/ansible-collections/amazon.aws/pull/1883). +- lookup/secretsmanager_secret - fix the issue when the nested secret is missing and on_missing is set to warn, the lookup was raising an error instead of a warning message (https://github.com/ansible-collections/amazon.aws/issues/1781). + v6.5.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index fabff1aeaa5..326b1eab9d7 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2396,3 +2396,19 @@ releases: - 20240129-aws_ec2-inventory-bugfix.yml - release_summary.yml release_date: '2024-02-06' + 6.5.3: + changes: + bugfixes: + - cloudwatchevent_rule - Fix to avoid adding quotes to JSON input for provided + input_template (https://github.com/ansible-collections/amazon.aws/pull/1883). + - lookup/secretsmanager_secret - fix the issue when the nested secret is missing + and on_missing is set to warn, the lookup was raising an error instead of + a warning message (https://github.com/ansible-collections/amazon.aws/issues/1781). + release_summary: This release includes bugfixes for the``cloudwatchevent_rule`` module + and ``secretsmanager_secret`` lookup plugin. + fragments: + - 1883-cloudwatchevent_rule-fix-json-input-handling-for-input_template.yml + - 20240212-lookup-secretsmanager_secret-fix-issue-when-nested-is-missing-and-on_missing-is-set-to-warn.yaml + - release_summary.yml + - remove_rendundant_workflow.yml + release_date: '2024-03-06' diff --git a/changelogs/fragments/1883-cloudwatchevent_rule-fix-json-input-handling-for-input_template.yml b/changelogs/fragments/1883-cloudwatchevent_rule-fix-json-input-handling-for-input_template.yml deleted file mode 100644 index 13c9ea1191f..00000000000 --- a/changelogs/fragments/1883-cloudwatchevent_rule-fix-json-input-handling-for-input_template.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - cloudwatchevent_rule - Fix to avoid adding quotes to JSON input for provided input_template (https://github.com/ansible-collections/amazon.aws/pull/1883). diff --git a/changelogs/fragments/20240212-lookup-secretsmanager_secret-fix-issue-when-nested-is-missing-and-on_missing-is-set-to-warn.yaml b/changelogs/fragments/20240212-lookup-secretsmanager_secret-fix-issue-when-nested-is-missing-and-on_missing-is-set-to-warn.yaml deleted file mode 100644 index 809f4a2f3db..00000000000 --- a/changelogs/fragments/20240212-lookup-secretsmanager_secret-fix-issue-when-nested-is-missing-and-on_missing-is-set-to-warn.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - lookup/secretsmanager_secret - fix the issue when the nested secret is missing and on_missing is set to warn, the lookup was raising an error instead of a warning message (https://github.com/ansible-collections/amazon.aws/issues/1781). diff --git a/changelogs/fragments/remove_rendundant_workflow.yml b/changelogs/fragments/remove_rendundant_workflow.yml deleted file mode 100644 index 5a96cd439d4..00000000000 --- a/changelogs/fragments/remove_rendundant_workflow.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - remove tests.yml as the workflows are covered in all_green_check.yml. diff --git a/galaxy.yml b/galaxy.yml index ff4737942a6..e54722a2d1c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: amazon name: aws -version: 6.5.2 +version: 6.5.3 readme: README.md authors: - Ansible (https://github.com/ansible) diff --git a/plugins/module_utils/common.py b/plugins/module_utils/common.py index 96c1f548d13..f18d4ad7cdb 100644 --- a/plugins/module_utils/common.py +++ b/plugins/module_utils/common.py @@ -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 = "6.5.2" +AMAZON_AWS_COLLECTION_VERSION = "6.5.3" _collection_info_context = {