From 68d7bea81d34de8e1c663675de3c57abaef62125 Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Thu, 12 Oct 2023 16:21:43 +0200 Subject: [PATCH] Prepare release 6.4.0 (#1964) Prepare release 6.4.0 SUMMARY Prepare 6.4.0 for release on the first Tuesday of the month. ISSUE TYPE Feature Pull Request COMPONENT NAME galaxy.yml CHANGELOG.rst changelogs/changelog.yaml ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis Reviewed-by: Markus Bergholz --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/changelog.yaml | 19 +++++++++++++++++++ ...s-task-definition-add-runtime-platform.yml | 2 -- changelogs/fragments/20230906-galaxy.yml | 2 -- .../fragments/20230906-route53_wait.yml | 2 -- .../fragments/20230908-alias-cleanup.yml | 2 -- .../fragments/botocore_params-cleanup.yml | 2 -- galaxy.yml | 2 +- plugins/module_utils/common.py | 2 +- 9 files changed, 36 insertions(+), 12 deletions(-) delete mode 100644 changelogs/fragments/1891_ecs-task-definition-add-runtime-platform.yml delete mode 100644 changelogs/fragments/20230906-galaxy.yml delete mode 100644 changelogs/fragments/20230906-route53_wait.yml delete mode 100644 changelogs/fragments/20230908-alias-cleanup.yml delete mode 100644 changelogs/fragments/botocore_params-cleanup.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a6547c0c1fa..26b9e5f511d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ community.aws Release Notes .. contents:: Topics +v6.4.0 +====== + +Release Summary +--------------- + +This release is the last planned minor release of ``community.aws`` prior to the release of 7.0.0. +It includes documentation fixes and adds support for setting run time configurations to the ``ecs_taskdefinition`` module. + + +Minor Changes +------------- + +- ecs_taskdefinition - Add parameter ``runtime_platform`` (https://github.com/ansible-collections/community.aws/issues/1891). + v6.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 21a7f44ddcd..5b8bc0d20e2 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3612,3 +3612,22 @@ releases: name: route53_wait namespace: '' release_date: '2023-09-06' + 6.4.0: + changes: + minor_changes: + - ecs_taskdefinition - Add parameter ``runtime_platform`` (https://github.com/ansible-collections/community.aws/issues/1891). + release_summary: 'This release is the last planned minor release of ``community.aws`` + prior to the release of 7.0.0. + + It includes documentation fixes and adds support for setting run time configurations + to the ``ecs_taskdefinition`` module. + + ' + fragments: + - 1891_ecs-task-definition-add-runtime-platform.yml + - 20230906-galaxy.yml + - 20230906-route53_wait.yml + - 20230908-alias-cleanup.yml + - botocore_params-cleanup.yml + - release-summery.yml + release_date: '2023-10-12' diff --git a/changelogs/fragments/1891_ecs-task-definition-add-runtime-platform.yml b/changelogs/fragments/1891_ecs-task-definition-add-runtime-platform.yml deleted file mode 100644 index ae800635281..00000000000 --- a/changelogs/fragments/1891_ecs-task-definition-add-runtime-platform.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ecs_taskdefinition - Add parameter ``runtime_platform`` (https://github.com/ansible-collections/community.aws/issues/1891). diff --git a/changelogs/fragments/20230906-galaxy.yml b/changelogs/fragments/20230906-galaxy.yml deleted file mode 100644 index a7ff7b5a43f..00000000000 --- a/changelogs/fragments/20230906-galaxy.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- galaxy.yml - add collection description. diff --git a/changelogs/fragments/20230906-route53_wait.yml b/changelogs/fragments/20230906-route53_wait.yml deleted file mode 100644 index 34f5fc1d245..00000000000 --- a/changelogs/fragments/20230906-route53_wait.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- route53_wait - fix version_added. diff --git a/changelogs/fragments/20230908-alias-cleanup.yml b/changelogs/fragments/20230908-alias-cleanup.yml deleted file mode 100644 index b54cc42242e..00000000000 --- a/changelogs/fragments/20230908-alias-cleanup.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- Update integration tests to reflect renamed plugins diff --git a/changelogs/fragments/botocore_params-cleanup.yml b/changelogs/fragments/botocore_params-cleanup.yml deleted file mode 100644 index b92b6606e75..00000000000 --- a/changelogs/fragments/botocore_params-cleanup.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- update docs and tests to use canonical parameter names for credentials. diff --git a/galaxy.yml b/galaxy.yml index 6236b1c5a6d..cc444c0db25 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: community name: aws -version: 6.3.0 +version: 6.4.0 readme: README.md authors: - Ansible (https://github.com/ansible) diff --git a/plugins/module_utils/common.py b/plugins/module_utils/common.py index 62d85d085e9..872b137aac3 100644 --- a/plugins/module_utils/common.py +++ b/plugins/module_utils/common.py @@ -5,4 +5,4 @@ COMMUNITY_AWS_COLLECTION_NAME = "community.aws" -COMMUNITY_AWS_COLLECTION_VERSION = "6.3.0" +COMMUNITY_AWS_COLLECTION_VERSION = "6.4.0"