diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6f031632dac..ad19ef10a48 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ community.aws Release Notes .. contents:: Topics +v4.4.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.aws`` collection. +This changelog contains all changes to the modules and plugins in this collection +that have been made after the previous release. + +Minor Changes +------------- + +- elasticache_parameter_group - add ``redis6.x`` group family on the module input choices (https://github.com/ansible-collections/community.aws/pull/1476). + +Bugfixes +-------- + +- aws_ssm - fixes S3 bucket region detection by ensuring boto client has correct credentials and exists in correct partition (https://github.com/ansible-collections/community.aws/pull/1428). +- ecs_ecr - fix a ``RepositoryNotFound`` exception when trying to create repositories in check mode (https://github.com/ansible-collections/community.aws/pull/1550). +- opensearch - Fix cluster creation when using advanced security options (https://github.com/ansible-collections/community.aws/pull/1613). + v4.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 81001f06265..403b471d14b 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2581,3 +2581,29 @@ releases: - RELEASE-4.3.0.yml - ec2_placement_group_race_on_create.yaml release_date: '2022-10-06' + 4.4.0: + changes: + bugfixes: + - aws_ssm - fixes S3 bucket region detection by ensuring boto client has correct + credentials and exists in correct partition (https://github.com/ansible-collections/community.aws/pull/1428). + - ecs_ecr - fix a ``RepositoryNotFound`` exception when trying to create repositories + in check mode (https://github.com/ansible-collections/community.aws/pull/1550). + - opensearch - Fix cluster creation when using advanced security options (https://github.com/ansible-collections/community.aws/pull/1613). + minor_changes: + - elasticache_parameter_group - add ``redis6.x`` group family on the module + input choices (https://github.com/ansible-collections/community.aws/pull/1476). + release_summary: 'This is the minor release of the ``community.aws`` collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been made after the previous release.' + fragments: + - 1428-aws-ssm-missing-credentials.yml + - 1476-add-redis6x-cache-parameter-group-family.yml + - 1550-ecs_ecr-RepositoryNotFound.yml + - 1565-healthCheck-docs.yml + - 1579-ec2_vpc_vgw-deleted.yml + - 1613-opensearch.yml + - 20221026-pytest-forked.yml + - 4.4.0.yml + release_date: '2022-12-08' diff --git a/changelogs/fragments/1428-aws-ssm-missing-credentials.yml b/changelogs/fragments/1428-aws-ssm-missing-credentials.yml deleted file mode 100644 index 49092b9ae18..00000000000 --- a/changelogs/fragments/1428-aws-ssm-missing-credentials.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - aws_ssm - fixes S3 bucket region detection by ensuring boto client has correct credentials and exists in correct partition (https://github.com/ansible-collections/community.aws/pull/1428). diff --git a/changelogs/fragments/1476-add-redis6x-cache-parameter-group-family.yml b/changelogs/fragments/1476-add-redis6x-cache-parameter-group-family.yml deleted file mode 100644 index 41d43621e3c..00000000000 --- a/changelogs/fragments/1476-add-redis6x-cache-parameter-group-family.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - elasticache_parameter_group - add ``redis6.x`` group family on the module input choices (https://github.com/ansible-collections/community.aws/pull/1476). \ No newline at end of file diff --git a/changelogs/fragments/1550-ecs_ecr-RepositoryNotFound.yml b/changelogs/fragments/1550-ecs_ecr-RepositoryNotFound.yml deleted file mode 100644 index 04690aea869..00000000000 --- a/changelogs/fragments/1550-ecs_ecr-RepositoryNotFound.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- ecs_ecr - fix a ``RepositoryNotFound`` exception when trying to create repositories in check mode (https://github.com/ansible-collections/community.aws/pull/1550). diff --git a/changelogs/fragments/1565-healthCheck-docs.yml b/changelogs/fragments/1565-healthCheck-docs.yml deleted file mode 100644 index f915404fe59..00000000000 --- a/changelogs/fragments/1565-healthCheck-docs.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - "ecs_taskdefinition - Add input documentation for the ``healthCheck`` parameter (https://github.com/ansible-collections/community.aws/pull/1610)" diff --git a/changelogs/fragments/1579-ec2_vpc_vgw-deleted.yml b/changelogs/fragments/1579-ec2_vpc_vgw-deleted.yml deleted file mode 100644 index db9e57531b3..00000000000 --- a/changelogs/fragments/1579-ec2_vpc_vgw-deleted.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- ec2_vpc_vgw - update integration tests to allow for attachments being removed from the list once deleted (https://github.com/ansible-collections/community.aws/pull/1579). diff --git a/changelogs/fragments/1613-opensearch.yml b/changelogs/fragments/1613-opensearch.yml deleted file mode 100644 index 323241a982e..00000000000 --- a/changelogs/fragments/1613-opensearch.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - opensearch - Fix cluster creation when using advanced security options (https://github.com/ansible-collections/community.aws/pull/1613). diff --git a/changelogs/fragments/20221026-pytest-forked.yml b/changelogs/fragments/20221026-pytest-forked.yml deleted file mode 100644 index 50a918cab3d..00000000000 --- a/changelogs/fragments/20221026-pytest-forked.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- test-requirements - add pytest-forked to requirements for unit tests diff --git a/galaxy.yml b/galaxy.yml index 9d7d9458b1f..d42c260584c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 4.3.0 +version: 4.4.0 readme: README.md authors: - Ansible (https://github.com/ansible)