diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 478030ccb9c..c94207ba459 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ community.aws Release Notes .. contents:: Topics +v5.4.0 +====== + +Release Summary +--------------- + +This minor release brings minor new features to the ``sns`` and ``ecs_service`` modules. + +Minor Changes +------------- + +- ecs_service - added new parameter ``enable_execute_command`` (https://github.com/ansible-collections/community.aws/pull/488). +- ecs_service - handle SDK errors more cleanly on update failures (https://github.com/ansible-collections/community.aws/pull/488). +- sns - Add support for ``message_group_id`` and ``message_deduplication_id`` (https://github.com/ansible-collections/community.aws/pull/1733). + v5.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index d7b9be0ec8e..0dd1295726a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3176,3 +3176,17 @@ releases: name: eks_nodegroup namespace: '' release_date: '2023-03-07' + 5.4.0: + changes: + minor_changes: + - ecs_service - added new parameter ``enable_execute_command`` (https://github.com/ansible-collections/community.aws/pull/488). + - ecs_service - handle SDK errors more cleanly on update failures (https://github.com/ansible-collections/community.aws/pull/488). + - sns - Add support for ``message_group_id`` and ``message_deduplication_id`` + (https://github.com/ansible-collections/community.aws/pull/1733). + release_summary: This minor release brings minor new features to the ``sns`` + and ``ecs_service`` modules. + fragments: + - 1733-sns-publish-to-fifo-topics.yml + - 488-ecs_service-support_exec.yml + - release-5.4.0.yml + release_date: '2023-03-27' diff --git a/changelogs/fragments/1733-sns-publish-to-fifo-topics.yml b/changelogs/fragments/1733-sns-publish-to-fifo-topics.yml deleted file mode 100644 index d0b74749ec6..00000000000 --- a/changelogs/fragments/1733-sns-publish-to-fifo-topics.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - sns - Add support for ``message_group_id`` and ``message_deduplication_id`` (https://github.com/ansible-collections/community.aws/pull/1733). diff --git a/changelogs/fragments/488-ecs_service-support_exec.yml b/changelogs/fragments/488-ecs_service-support_exec.yml deleted file mode 100644 index 70bc3256d4d..00000000000 --- a/changelogs/fragments/488-ecs_service-support_exec.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- ecs_service - added new parameter ``enable_execute_command`` (https://github.com/ansible-collections/community.aws/pull/488). -- ecs_service - handle SDK errors more cleanly on update failures (https://github.com/ansible-collections/community.aws/pull/488). diff --git a/galaxy.yml b/galaxy.yml index 10c4985f6bc..8b0a76cba56 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 5.3.0 +version: 5.4.0 readme: README.md authors: - Ansible (https://github.com/ansible)