diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2d0dae81241..6f031632dac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,35 @@ community.aws Release Notes .. contents:: Topics +v4.3.0 +====== + +Release Summary +--------------- + +The community.aws 4.3.0 release includes a number of minor bug fixes and improvements. +Following the release of amazon.aws 5.0.0, backports to the 4.x series will be limited to +security issues and bugfixes. + + +Minor Changes +------------- + +- autoscaling_group_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- cloudfront_distribution - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- cloudfront_origin_access_identity - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- cloudtrail - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- ec2_vpc_nacl - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- eks_fargate_profile - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- redshift - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). +- s3_bucket_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + +Bugfixes +-------- + +- ec2_placement_group - Handle a potential race creation during the creation of a new Placement Group (https://github.com/ansible-collections/community.aws/pull/1477). +- rds_cluster - fixes bug where specifiying an rds cluster parameter group raises a `KeyError` (https://github.com/ansible-collections/community.aws/pull/1417). + v4.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 5b78f7b5538..81001f06265 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2550,3 +2550,34 @@ releases: fragments: - 1398-s3_lifecycle-no-prefix.yml release_date: '2022-09-14' + 4.3.0: + changes: + bugfixes: + - ec2_placement_group - Handle a potential race creation during the creation + of a new Placement Group (https://github.com/ansible-collections/community.aws/pull/1477). + - rds_cluster - fixes bug where specifiying an rds cluster parameter group raises + a `KeyError` (https://github.com/ansible-collections/community.aws/pull/1417). + minor_changes: + - autoscaling_group_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - cloudfront_distribution - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - cloudfront_origin_access_identity - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - cloudtrail - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - ec2_vpc_nacl - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - eks_fargate_profile - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - redshift - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + - s3_bucket_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). + release_summary: 'The community.aws 4.3.0 release includes a number of minor + bug fixes and improvements. + + Following the release of amazon.aws 5.0.0, backports to the 4.x series will + be limited to + + security issues and bugfixes. + + ' + fragments: + - 1410-linting.yml + - 1417-cluster-param-group-keyerror.yml + - RELEASE-4.3.0.yml + - ec2_placement_group_race_on_create.yaml + release_date: '2022-10-06' diff --git a/changelogs/fragments/1410-linting.yml b/changelogs/fragments/1410-linting.yml deleted file mode 100644 index f61230bc153..00000000000 --- a/changelogs/fragments/1410-linting.yml +++ /dev/null @@ -1,9 +0,0 @@ -minor_changes: -- autoscaling_group_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- cloudfront_distribution - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- cloudfront_origin_access_identity - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- cloudtrail - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- ec2_vpc_nacl - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- eks_fargate_profile - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- redshift - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). -- s3_bucket_info - minor sanity test fixes (https://github.com/ansible-collections/community.aws/pull/1410). diff --git a/changelogs/fragments/1417-cluster-param-group-keyerror.yml b/changelogs/fragments/1417-cluster-param-group-keyerror.yml deleted file mode 100644 index 823c2c85b96..00000000000 --- a/changelogs/fragments/1417-cluster-param-group-keyerror.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- rds_cluster - fixes bug where specifiying an rds cluster parameter group raises a `KeyError` (https://github.com/ansible-collections/community.aws/pull/1417). diff --git a/changelogs/fragments/ec2_placement_group_race_on_create.yaml b/changelogs/fragments/ec2_placement_group_race_on_create.yaml deleted file mode 100644 index d22966d13d2..00000000000 --- a/changelogs/fragments/ec2_placement_group_race_on_create.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- "ec2_placement_group - Handle a potential race creation during the creation of a new Placement Group (https://github.com/ansible-collections/community.aws/pull/1477)." diff --git a/galaxy.yml b/galaxy.yml index 0f08b5aee92..9d7d9458b1f 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 4.2.0 +version: 4.3.0 readme: README.md authors: - Ansible (https://github.com/ansible)