diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b576186399..3abbb38409b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ community.aws Release Notes .. contents:: Topics +v5.5.1 +====== + +Release Summary +--------------- + +This release brings several bugfixes. + +Bugfixes +-------- + +- cloudfront_distribution - no longer crashes when waiting for completion of creation (https://github.com/ansible-collections/community.aws/issues/255). +- cloudfront_distribution - now honours the ``enabled`` setting (https://github.com/ansible-collections/community.aws/issues/1823). + v5.5.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ee3f2b9ab49..44e30826853 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3227,3 +3227,20 @@ releases: - elasticache_info-ignore-CacheClusterNotFound-when-reading-tags.yaml - release-notes.yml release_date: '2023-05-05' + 5.5.1: + changes: + bugfixes: + - cloudfront_distribution - no longer crashes when waiting for completion of + creation (https://github.com/ansible-collections/community.aws/issues/255). + - cloudfront_distribution - now honours the ``enabled`` setting (https://github.com/ansible-collections/community.aws/issues/1823). + release_summary: This release brings several bugfixes. + fragments: + - 1823-cloudfront_distribution_always_created_enabled.yml + - 20230627-ci-fixup.yml + - 20230701-ci-fixup.yml + - 20230704-github_workflows.yml + - 255-cloudfront_distribution_create_wait_crash.yml + - release_summary.yml + - test-reqs.yml + - tests-requirements.yml + release_date: '2023-07-05' diff --git a/changelogs/fragments/1823-cloudfront_distribution_always_created_enabled.yml b/changelogs/fragments/1823-cloudfront_distribution_always_created_enabled.yml deleted file mode 100644 index 473245dacca..00000000000 --- a/changelogs/fragments/1823-cloudfront_distribution_always_created_enabled.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cloudfront_distribution - now honours the ``enabled`` setting (https://github.com/ansible-collections/community.aws/issues/1823). diff --git a/changelogs/fragments/20230627-ci-fixup.yml b/changelogs/fragments/20230627-ci-fixup.yml deleted file mode 100644 index ec5ceaaf0c4..00000000000 --- a/changelogs/fragments/20230627-ci-fixup.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- CI fixup - ``include:`` should be ``include_tasks:``. diff --git a/changelogs/fragments/20230701-ci-fixup.yml b/changelogs/fragments/20230701-ci-fixup.yml deleted file mode 100644 index 38a20fd23b8..00000000000 --- a/changelogs/fragments/20230701-ci-fixup.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- CI test fixups diff --git a/changelogs/fragments/20230704-github_workflows.yml b/changelogs/fragments/20230704-github_workflows.yml deleted file mode 100644 index daae58fb966..00000000000 --- a/changelogs/fragments/20230704-github_workflows.yml +++ /dev/null @@ -1,3 +0,0 @@ -trivial: - - "Add GitHub workflows for sanity, units and changelog." - - "Remove Python < 3.6 compatibility code for unit tests." diff --git a/changelogs/fragments/255-cloudfront_distribution_create_wait_crash.yml b/changelogs/fragments/255-cloudfront_distribution_create_wait_crash.yml deleted file mode 100644 index 1ea1f943c66..00000000000 --- a/changelogs/fragments/255-cloudfront_distribution_create_wait_crash.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cloudfront_distribution - no longer crashes when waiting for completion of creation (https://github.com/ansible-collections/community.aws/issues/255). diff --git a/changelogs/fragments/test-reqs.yml b/changelogs/fragments/test-reqs.yml deleted file mode 100644 index 11598f7ddb2..00000000000 --- a/changelogs/fragments/test-reqs.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: - - "Move Galaxy test requirements from old transitional format in tests/requirements.yml to standard Ansible Galaxy requirements files in tests/integration/requirements.yml and tests/unit/requirements.yml." diff --git a/changelogs/fragments/tests-requirements.yml b/changelogs/fragments/tests-requirements.yml deleted file mode 100644 index 68796d3d3c3..00000000000 --- a/changelogs/fragments/tests-requirements.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- Add amazon.aws GitHub versions as requirements for tests. diff --git a/galaxy.yml b/galaxy.yml index c64b943be4d..e73a67979cd 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 5.5.0 +version: 5.5.1 readme: README.md authors: - Ansible (https://github.com/ansible)