diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ad19ef10a48..d40278be8a9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ community.aws Release Notes .. contents:: Topics +v4.5.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.aws`` collection. + +Minor Changes +------------- + +- ecs_service - support load balancer update for existing ecs services(https://github.com/ansible-collections/community.aws/pull/1625). +- iam_role - Drop deprecation warning, because the standard value for purge parametes is ``true`` (https://github.com/ansible-collections/community.aws/pull/1636). + +Bugfixes +-------- + +- aws_ssm - fix ``invalid literal for int`` error on some operating systems (https://github.com/ansible-collections/community.aws/issues/113). +- ecs_service - respect ``placement_constraints`` for existing ecs services (https://github.com/ansible-collections/community.aws/pull/1601). +- s3_lifecycle - Module no longer calls `put_lifecycle_configuration` if there is no change. (https://github.com/ansible-collections/community.aws/issues/1624) +- ssm_parameter - Fix a ``KeyError`` when adding a description to an existing parameter (https://github.com/ansible-collections/community.aws/issues/1471). + v4.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 403b471d14b..cfe21f719ce 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2607,3 +2607,29 @@ releases: - 20221026-pytest-forked.yml - 4.4.0.yml release_date: '2022-12-08' + 4.5.0: + changes: + bugfixes: + - aws_ssm - fix ``invalid literal for int`` error on some operating systems + (https://github.com/ansible-collections/community.aws/issues/113). + - ecs_service - respect ``placement_constraints`` for existing ecs services + (https://github.com/ansible-collections/community.aws/pull/1601). + - s3_lifecycle - Module no longer calls `put_lifecycle_configuration` if there + is no change. (https://github.com/ansible-collections/community.aws/issues/1624) + - ssm_parameter - Fix a ``KeyError`` when adding a description to an existing + parameter (https://github.com/ansible-collections/community.aws/issues/1471). + minor_changes: + - ecs_service - support load balancer update for existing ecs services(https://github.com/ansible-collections/community.aws/pull/1625). + - iam_role - Drop deprecation warning, because the standard value for purge + parametes is ``true`` (https://github.com/ansible-collections/community.aws/pull/1636). + release_summary: This is the minor release of the ``community.aws`` collection. + fragments: + - 1601-ecs_service-support_constraints_and_strategy_update.yml + - 1624-s3-lifecycle-idempotent.yml + - 1625-ecs_service-support-load-balancer-update.yml + - 1627-ssm_parameter-KeyError-when-adding-description.yml + - 20230112-aws_ssm-tests.yml + - 4.5.0.yml + - 558-ssm_connection-invalid-literal.yml + - iam_role_purge_policy.yml + release_date: '2023-01-25' diff --git a/changelogs/fragments/1601-ecs_service-support_constraints_and_strategy_update.yml b/changelogs/fragments/1601-ecs_service-support_constraints_and_strategy_update.yml deleted file mode 100644 index daa58d11ae7..00000000000 --- a/changelogs/fragments/1601-ecs_service-support_constraints_and_strategy_update.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ecs_service - respect ``placement_constraints`` for existing ecs services (https://github.com/ansible-collections/community.aws/pull/1601). diff --git a/changelogs/fragments/1624-s3-lifecycle-idempotent.yml b/changelogs/fragments/1624-s3-lifecycle-idempotent.yml deleted file mode 100644 index 3307819894d..00000000000 --- a/changelogs/fragments/1624-s3-lifecycle-idempotent.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- s3_lifecycle - Module no longer calls `put_lifecycle_configuration` if there is no change. (https://github.com/ansible-collections/community.aws/issues/1624) diff --git a/changelogs/fragments/1625-ecs_service-support-load-balancer-update.yml b/changelogs/fragments/1625-ecs_service-support-load-balancer-update.yml deleted file mode 100644 index 0a4e71e8109..00000000000 --- a/changelogs/fragments/1625-ecs_service-support-load-balancer-update.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ecs_service - support load balancer update for existing ecs services(https://github.com/ansible-collections/community.aws/pull/1625). \ No newline at end of file diff --git a/changelogs/fragments/1627-ssm_parameter-KeyError-when-adding-description.yml b/changelogs/fragments/1627-ssm_parameter-KeyError-when-adding-description.yml deleted file mode 100644 index 98344a6ff4a..00000000000 --- a/changelogs/fragments/1627-ssm_parameter-KeyError-when-adding-description.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ssm_parameter - Fix a ``KeyError`` when adding a description to an existing parameter (https://github.com/ansible-collections/community.aws/issues/1471). diff --git a/changelogs/fragments/20230112-aws_ssm-tests.yml b/changelogs/fragments/20230112-aws_ssm-tests.yml deleted file mode 100644 index c35e054b931..00000000000 --- a/changelogs/fragments/20230112-aws_ssm-tests.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- aws_ssm - Rework and enable aws_ssm integration tests diff --git a/changelogs/fragments/558-ssm_connection-invalid-literal.yml b/changelogs/fragments/558-ssm_connection-invalid-literal.yml deleted file mode 100644 index 7510d59e388..00000000000 --- a/changelogs/fragments/558-ssm_connection-invalid-literal.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- aws_ssm - fix ``invalid literal for int`` error on some operating systems (https://github.com/ansible-collections/community.aws/issues/113). diff --git a/changelogs/fragments/iam_role_purge_policy.yml b/changelogs/fragments/iam_role_purge_policy.yml deleted file mode 100644 index c9837d028d4..00000000000 --- a/changelogs/fragments/iam_role_purge_policy.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - iam_role - Drop deprecation warning, because the standard value for purge parametes is ``true`` (https://github.com/ansible-collections/community.aws/pull/1636). diff --git a/galaxy.yml b/galaxy.yml index d42c260584c..a7a6d3c56c7 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 4.4.0 +version: 4.5.0 readme: README.md authors: - Ansible (https://github.com/ansible) @@ -8,7 +8,7 @@ description: null license_file: COPYING tags: [community, aws, cloud, amazon] dependencies: - amazon.aws: '>=4.2.0' + amazon.aws: '>=4.4.0' repository: https://github.com/ansible-collections/community.aws documentation: https://ansible-collections.github.io/community.aws/branch/stable-4/collections/community/aws/index.html homepage: https://github.com/ansible-collections/community.aws