From 135661ef9a0af74b28b434524a01a85f5c1e76ee Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Tue, 7 Mar 2023 11:53:04 +0100 Subject: [PATCH] Prepare release 5.3.0 (#1740) Prepare release 5.3.0 SUMMARY Prepare release 5.3.0 ISSUE TYPE Feature Pull Request COMPONENT NAME CHANGELOG galaxy.yml ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis Reviewed-by: Markus Bergholz --- CHANGELOG.rst | 51 ++++++++++++ changelogs/changelog.yaml | 82 +++++++++++++++++++ .../1426-docs_update_ecs_taskdefinition.yml | 2 - .../1574-ssm-parameter-support-for-tags.yml | 2 - .../fragments/1591-eks-add-tags-cluster.yml | 2 - ...cycle_add_number_of_versions_to_retain.yml | 2 - ...rivate-network-vpc-interface-endpoints.yml | 2 - .../1628-secretsmanager_secret-overwrite.yml | 2 - ...ervice-force_redeploy_taskdef_optional.yml | 2 - .../fragments/1690-fix-copying-empty-file.yml | 2 - changelogs/fragments/1693-sns_topic.yml | 2 - .../1726-ssm_connection-vars_tests.yml | 2 - changelogs/fragments/1728_remove_state.yml | 2 - changelogs/fragments/1734-typo.yml | 2 - .../20221125-sqs-high-throughput.yml | 3 - changelogs/fragments/20230204-sanity.yml | 4 - changelogs/fragments/514-aws_ssm-env_vars.yml | 2 - .../551-iam_role-policy_documents.yml | 7 -- .../827-secretsmanager_secret-replication.yml | 2 - .../fragments/972-sns_topic-add_tags.yaml | 2 - .../ecs_service_and_ecs_integration_test.yml | 8 -- changelogs/fragments/eks.yml | 2 - changelogs/fragments/eks_release.yml | 2 - .../fragments/iam_access_key_docs_fix.yml | 2 - .../fragments/sns_topic-cross-account.yml | 2 - galaxy.yml | 2 +- 26 files changed, 134 insertions(+), 61 deletions(-) delete mode 100644 changelogs/fragments/1426-docs_update_ecs_taskdefinition.yml delete mode 100644 changelogs/fragments/1574-ssm-parameter-support-for-tags.yml delete mode 100644 changelogs/fragments/1591-eks-add-tags-cluster.yml delete mode 100644 changelogs/fragments/1606-s3_lifecycle_add_number_of_versions_to_retain.yml delete mode 100644 changelogs/fragments/1619-add-s3-bucket-endpoint-url-var-for-private-network-vpc-interface-endpoints.yml delete mode 100644 changelogs/fragments/1628-secretsmanager_secret-overwrite.yml delete mode 100644 changelogs/fragments/1680-ecs_service-force_redeploy_taskdef_optional.yml delete mode 100644 changelogs/fragments/1690-fix-copying-empty-file.yml delete mode 100644 changelogs/fragments/1693-sns_topic.yml delete mode 100644 changelogs/fragments/1726-ssm_connection-vars_tests.yml delete mode 100644 changelogs/fragments/1728_remove_state.yml delete mode 100644 changelogs/fragments/1734-typo.yml delete mode 100644 changelogs/fragments/20221125-sqs-high-throughput.yml delete mode 100644 changelogs/fragments/20230204-sanity.yml delete mode 100644 changelogs/fragments/514-aws_ssm-env_vars.yml delete mode 100644 changelogs/fragments/551-iam_role-policy_documents.yml delete mode 100644 changelogs/fragments/827-secretsmanager_secret-replication.yml delete mode 100644 changelogs/fragments/972-sns_topic-add_tags.yaml delete mode 100644 changelogs/fragments/ecs_service_and_ecs_integration_test.yml delete mode 100644 changelogs/fragments/eks.yml delete mode 100644 changelogs/fragments/eks_release.yml delete mode 100644 changelogs/fragments/iam_access_key_docs_fix.yml delete mode 100644 changelogs/fragments/sns_topic-cross-account.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 077ea8446b8..478030ccb9c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,57 @@ community.aws Release Notes .. contents:: Topics +v5.3.0 +====== + +Release Summary +--------------- + +This release brings some minor changes, bugfixes and deprecations. + +Minor Changes +------------- + +- aws_ssm - added support for specifying the endpoint to use when connecting to the S3 API (https://github.com/ansible-collections/community.aws/pull/1619). +- aws_ssm - remove unused imports (https://github.com/ansible-collections/community.aws/pull/1707). +- aws_ssm - rework environment variable handling to use built in Ansible plugin support (https://github.com/ansible-collections/community.aws/pull/514). +- batch_job_definition - make trailing comma tuple explicitly a tuple (https://github.com/ansible-collections/community.aws/pull/1707). +- ecs_service - ``task_definition`` is now optional when ``force_new_deployment`` is ``True`` (https://github.com/ansible-collections/community.aws/pull/1680). +- ecs_service - new parameter ``purge_placement_constraints`` to have the ability to remove the placement constraints of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). +- ecs_service - new parameter ``purge_placement_strategy`` to have the ability to remove the placement strategy of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). +- iam_role - added ``assume_role_policy_document_raw`` to the role return values, this doesn't convert policy document contents from CamelCase to snake_case (https://github.com/ansible-collections/community.aws/issues/551). +- iam_role_info - added ``assume_role_policy_document_raw`` to the role return values, this doesn't convert policy document contents from CamelCase to snake_case (https://github.com/ansible-collections/community.aws/issues/551). +- inspector_target - minor linting fix (https://github.com/ansible-collections/community.aws/pull/1707). +- s3_lifecycle - add parameter ``noncurrent_version_keep_newer`` to set the number of newest noncurrent versions to retain (https://github.com/ansible-collections/community.aws/pull/1606). +- secretsmanager_secret - added support for region replication using the ``replica`` parameter (https://github.com/ansible-collections/community.aws/pull/827). +- secretsmanager_secret - added the ``overwrite`` parameter to support only setting the secret if it doesn't exist (https://github.com/ansible-collections/community.aws/pull/1628). +- sns_topic - add support for ``content_based_deduplication`` parameter (https://github.com/ansible-collections/community.aws/pull/1693). +- sns_topic - add support for ``tags`` and ``purge_tags`` (https://github.com/ansible-collections/community.aws/pull/972). +- sqs_queue - add support for ``deduplication_scope`` parameter (https://github.com/ansible-collections/community.aws/pull/1603). +- sqs_queue - add support for ``fifo_throughput_limit`` parameter (https://github.com/ansible-collections/community.aws/pull/1603). +- ssm_parameter - add support for tags in ssm parameters (https://github.com/ansible-collections/community.aws/issues/1573). + +Deprecated Features +------------------- + +- ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_constraints`` will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). +- ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_strategy`` will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). +- iam_role - All top level return values other than ``iam_role`` and ``changed`` have been deprecated and will be removed in a release after 2023-12-01 (https://github.com/ansible-collections/community.aws/issues/551). +- iam_role - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` return value already returns the policy document in this future format (https://github.com/ansible-collections/community.aws/issues/551). +- iam_role_info - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` return value already returns the policy document in this future format (https://github.com/ansible-collections/community.aws/issues/551). + +Bugfixes +-------- + +- aws_ssm - fix copying empty file with older curl versions (https://github.com/ansible-collections/community.aws/issues/1686). +- eks_cluster - adding tags to eks cluster creation (https://github.com/ansible-collections/community.aws/pull/1591). +- sns_topic - avoid fetching attributes from subscribers when not setting them, this can cause permissions issues (https://github.com/ansible-collections/community.aws/pull/1418). + +New Modules +----------- + +- eks_nodegroup - Manage EKS Nodegroup module + v5.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index f7b4920b7ab..d7b9be0ec8e 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3094,3 +3094,85 @@ releases: - iam_role_purge_policy.yml - release-5.2.0.yml release_date: '2023-01-24' + 5.3.0: + changes: + bugfixes: + - aws_ssm - fix copying empty file with older curl versions (https://github.com/ansible-collections/community.aws/issues/1686). + - eks_cluster - adding tags to eks cluster creation (https://github.com/ansible-collections/community.aws/pull/1591). + - sns_topic - avoid fetching attributes from subscribers when not setting them, + this can cause permissions issues (https://github.com/ansible-collections/community.aws/pull/1418). + deprecated_features: + - ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_constraints`` + will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). + - ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_strategy`` + will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). + - iam_role - All top level return values other than ``iam_role`` and ``changed`` + have been deprecated and will be removed in a release after 2023-12-01 (https://github.com/ansible-collections/community.aws/issues/551). + - iam_role - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` + will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` + return value already returns the policy document in this future format (https://github.com/ansible-collections/community.aws/issues/551). + - iam_role_info - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` + will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` + return value already returns the policy document in this future format (https://github.com/ansible-collections/community.aws/issues/551). + minor_changes: + - aws_ssm - added support for specifying the endpoint to use when connecting + to the S3 API (https://github.com/ansible-collections/community.aws/pull/1619). + - aws_ssm - remove unused imports (https://github.com/ansible-collections/community.aws/pull/1707). + - aws_ssm - rework environment variable handling to use built in Ansible plugin + support (https://github.com/ansible-collections/community.aws/pull/514). + - batch_job_definition - make trailing comma tuple explicitly a tuple (https://github.com/ansible-collections/community.aws/pull/1707). + - ecs_service - ``task_definition`` is now optional when ``force_new_deployment`` + is ``True`` (https://github.com/ansible-collections/community.aws/pull/1680). + - ecs_service - new parameter ``purge_placement_constraints`` to have the ability + to remove the placement constraints of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). + - ecs_service - new parameter ``purge_placement_strategy`` to have the ability + to remove the placement strategy of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). + - iam_role - added ``assume_role_policy_document_raw`` to the role return values, + this doesn't convert policy document contents from CamelCase to snake_case + (https://github.com/ansible-collections/community.aws/issues/551). + - iam_role_info - added ``assume_role_policy_document_raw`` to the role return + values, this doesn't convert policy document contents from CamelCase to snake_case + (https://github.com/ansible-collections/community.aws/issues/551). + - inspector_target - minor linting fix (https://github.com/ansible-collections/community.aws/pull/1707). + - s3_lifecycle - add parameter ``noncurrent_version_keep_newer`` to set the + number of newest noncurrent versions to retain (https://github.com/ansible-collections/community.aws/pull/1606). + - secretsmanager_secret - added support for region replication using the ``replica`` + parameter (https://github.com/ansible-collections/community.aws/pull/827). + - secretsmanager_secret - added the ``overwrite`` parameter to support only + setting the secret if it doesn't exist (https://github.com/ansible-collections/community.aws/pull/1628). + - sns_topic - add support for ``content_based_deduplication`` parameter (https://github.com/ansible-collections/community.aws/pull/1693). + - sns_topic - add support for ``tags`` and ``purge_tags`` (https://github.com/ansible-collections/community.aws/pull/972). + - sqs_queue - add support for ``deduplication_scope`` parameter (https://github.com/ansible-collections/community.aws/pull/1603). + - sqs_queue - add support for ``fifo_throughput_limit`` parameter (https://github.com/ansible-collections/community.aws/pull/1603). + - ssm_parameter - add support for tags in ssm parameters (https://github.com/ansible-collections/community.aws/issues/1573). + release_summary: This release brings some minor changes, bugfixes and deprecations. + fragments: + - 1426-docs_update_ecs_taskdefinition.yml + - 1574-ssm-parameter-support-for-tags.yml + - 1591-eks-add-tags-cluster.yml + - 1606-s3_lifecycle_add_number_of_versions_to_retain.yml + - 1619-add-s3-bucket-endpoint-url-var-for-private-network-vpc-interface-endpoints.yml + - 1628-secretsmanager_secret-overwrite.yml + - 1680-ecs_service-force_redeploy_taskdef_optional.yml + - 1690-fix-copying-empty-file.yml + - 1693-sns_topic.yml + - 1726-ssm_connection-vars_tests.yml + - 1728_remove_state.yml + - 1734-typo.yml + - 20221125-sqs-high-throughput.yml + - 20230204-sanity.yml + - 514-aws_ssm-env_vars.yml + - 551-iam_role-policy_documents.yml + - 827-secretsmanager_secret-replication.yml + - 972-sns_topic-add_tags.yaml + - ecs_service_and_ecs_integration_test.yml + - eks.yml + - eks_release.yml + - iam_access_key_docs_fix.yml + - release-summary.yml + - sns_topic-cross-account.yml + modules: + - description: Manage EKS Nodegroup module + name: eks_nodegroup + namespace: '' + release_date: '2023-03-07' diff --git a/changelogs/fragments/1426-docs_update_ecs_taskdefinition.yml b/changelogs/fragments/1426-docs_update_ecs_taskdefinition.yml deleted file mode 100644 index aa0b6319756..00000000000 --- a/changelogs/fragments/1426-docs_update_ecs_taskdefinition.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- ecs_task_definition - Add firelens docs diff --git a/changelogs/fragments/1574-ssm-parameter-support-for-tags.yml b/changelogs/fragments/1574-ssm-parameter-support-for-tags.yml deleted file mode 100644 index 6340f821972..00000000000 --- a/changelogs/fragments/1574-ssm-parameter-support-for-tags.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ssm_parameter - add support for tags in ssm parameters (https://github.com/ansible-collections/community.aws/issues/1573). \ No newline at end of file diff --git a/changelogs/fragments/1591-eks-add-tags-cluster.yml b/changelogs/fragments/1591-eks-add-tags-cluster.yml deleted file mode 100644 index 0801e948eb9..00000000000 --- a/changelogs/fragments/1591-eks-add-tags-cluster.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - eks_cluster - adding tags to eks cluster creation (https://github.com/ansible-collections/community.aws/pull/1591). diff --git a/changelogs/fragments/1606-s3_lifecycle_add_number_of_versions_to_retain.yml b/changelogs/fragments/1606-s3_lifecycle_add_number_of_versions_to_retain.yml deleted file mode 100644 index 2c1bceada01..00000000000 --- a/changelogs/fragments/1606-s3_lifecycle_add_number_of_versions_to_retain.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- s3_lifecycle - add parameter `noncurrent_version_keep_newer` to set the number of newest noncurrent versions to retain diff --git a/changelogs/fragments/1619-add-s3-bucket-endpoint-url-var-for-private-network-vpc-interface-endpoints.yml b/changelogs/fragments/1619-add-s3-bucket-endpoint-url-var-for-private-network-vpc-interface-endpoints.yml deleted file mode 100644 index 845d0f5dc22..00000000000 --- a/changelogs/fragments/1619-add-s3-bucket-endpoint-url-var-for-private-network-vpc-interface-endpoints.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- aws_ssm - added support for specifying the endpoint to use when connecting to the S3 API (https://github.com/ansible-collections/community.aws/pull/1619). diff --git a/changelogs/fragments/1628-secretsmanager_secret-overwrite.yml b/changelogs/fragments/1628-secretsmanager_secret-overwrite.yml deleted file mode 100644 index 1062a27ff6d..00000000000 --- a/changelogs/fragments/1628-secretsmanager_secret-overwrite.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- secretsmanager_secret - added the ``overwrite`` parameter to support only setting the secret if it doesn't exist (https://github.com/ansible-collections/community.aws/pull/1628). diff --git a/changelogs/fragments/1680-ecs_service-force_redeploy_taskdef_optional.yml b/changelogs/fragments/1680-ecs_service-force_redeploy_taskdef_optional.yml deleted file mode 100644 index f06be4e66e7..00000000000 --- a/changelogs/fragments/1680-ecs_service-force_redeploy_taskdef_optional.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- ecs_service - ``task_definition`` is now optional when ``force_new_deployment`` is ``True`` (https://github.com/ansible-collections/community.aws/pull/1680). diff --git a/changelogs/fragments/1690-fix-copying-empty-file.yml b/changelogs/fragments/1690-fix-copying-empty-file.yml deleted file mode 100644 index f5b829f38e3..00000000000 --- a/changelogs/fragments/1690-fix-copying-empty-file.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - aws_ssm - fix copying empty file with older curl versions (https://github.com/ansible-collections/community.aws/issues/1686). diff --git a/changelogs/fragments/1693-sns_topic.yml b/changelogs/fragments/1693-sns_topic.yml deleted file mode 100644 index 7cd3602f48d..00000000000 --- a/changelogs/fragments/1693-sns_topic.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- sns_topic - add support for ``content_based_deduplication`` parameter (https://github.com/ansible-collections/community.aws/pull/1693). diff --git a/changelogs/fragments/1726-ssm_connection-vars_tests.yml b/changelogs/fragments/1726-ssm_connection-vars_tests.yml deleted file mode 100644 index d76febdbdab..00000000000 --- a/changelogs/fragments/1726-ssm_connection-vars_tests.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- aws_ssm - additional integration tests when passing the connection parameters as variables (https://github.com/ansible-collections/community.aws/pull/1726). diff --git a/changelogs/fragments/1728_remove_state.yml b/changelogs/fragments/1728_remove_state.yml deleted file mode 100644 index cc64c013aa3..00000000000 --- a/changelogs/fragments/1728_remove_state.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- ec2_transit_gateway_vpc_attachement_info - removed incorrect ``state`` keyword from example (https://github.com/ansible-collections/community.aws/pull/1728). diff --git a/changelogs/fragments/1734-typo.yml b/changelogs/fragments/1734-typo.yml deleted file mode 100644 index 55542052610..00000000000 --- a/changelogs/fragments/1734-typo.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: - - "Fix 'compatibility' typo (https://github.com/ansible-collections/community.aws/pull/1734)." diff --git a/changelogs/fragments/20221125-sqs-high-throughput.yml b/changelogs/fragments/20221125-sqs-high-throughput.yml deleted file mode 100644 index 781bb3b16ae..00000000000 --- a/changelogs/fragments/20221125-sqs-high-throughput.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - sqs_queue - add support for `fifo_throughput_limit` parameter (https://github.com/ansible-collections/community.aws/pull/1603). - - sqs_queue - add support for `deduplication_scope` parameter (https://github.com/ansible-collections/community.aws/pull/1603). diff --git a/changelogs/fragments/20230204-sanity.yml b/changelogs/fragments/20230204-sanity.yml deleted file mode 100644 index e9ce8f7f0eb..00000000000 --- a/changelogs/fragments/20230204-sanity.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- aws_ssm - remove unused imports (https://github.com/ansible-collections/community.aws/pull/1707). -- batch_job_definition - make trailing comma tuple explicitly a tuple (https://github.com/ansible-collections/community.aws/pull/1707). -- inspector_target - minor linting fix (https://github.com/ansible-collections/community.aws/pull/1707). diff --git a/changelogs/fragments/514-aws_ssm-env_vars.yml b/changelogs/fragments/514-aws_ssm-env_vars.yml deleted file mode 100644 index 8b237c430d3..00000000000 --- a/changelogs/fragments/514-aws_ssm-env_vars.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- aws_ssm - rework environment variable handling to use built in Ansible plugin support (https://github.com/ansible-collections/community.aws/pull/514). diff --git a/changelogs/fragments/551-iam_role-policy_documents.yml b/changelogs/fragments/551-iam_role-policy_documents.yml deleted file mode 100644 index 50164769d27..00000000000 --- a/changelogs/fragments/551-iam_role-policy_documents.yml +++ /dev/null @@ -1,7 +0,0 @@ -minor_changes: -- iam_role - added ``assume_role_policy_document_raw`` to the role return values, this doesn't convert policy document contents from CamelCase to snake_case (https://github.com/ansible-collections/community.aws/issues/551). -- iam_role_info - added ``assume_role_policy_document_raw`` to the role return values, this doesn't convert policy document contents from CamelCase to snake_case (https://github.com/ansible-collections/community.aws/issues/551). -deprecated_features: -- iam_role - All top level return values other than ``iam_role`` and ``changed`` have been deprecated and will be removed in a release after 2023-12-01. (). -- iam_role - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` return value already returns the policy document in this future format. -- iam_role_info - In a release after 2023-12-01 the contents of ``assume_role_policy_document`` will no longer be converted from CamelCase to snake_case. The ``assume_role_policy_document_raw`` return value already returns the policy document in this future format. diff --git a/changelogs/fragments/827-secretsmanager_secret-replication.yml b/changelogs/fragments/827-secretsmanager_secret-replication.yml deleted file mode 100644 index 3f7ca135ebb..00000000000 --- a/changelogs/fragments/827-secretsmanager_secret-replication.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- secretsmanager_secret - added support for region replication using the ``replica`` parameter (https://github.com/ansible-collections/community.aws/pull/827). diff --git a/changelogs/fragments/972-sns_topic-add_tags.yaml b/changelogs/fragments/972-sns_topic-add_tags.yaml deleted file mode 100644 index be2690a9fca..00000000000 --- a/changelogs/fragments/972-sns_topic-add_tags.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- sns_topic - add support for ``tags`` and ``purge_tags`` (https://github.com/ansible-collections/community.aws/pull/972). diff --git a/changelogs/fragments/ecs_service_and_ecs_integration_test.yml b/changelogs/fragments/ecs_service_and_ecs_integration_test.yml deleted file mode 100644 index a0788a18d41..00000000000 --- a/changelogs/fragments/ecs_service_and_ecs_integration_test.yml +++ /dev/null @@ -1,8 +0,0 @@ -minor_changes: - - ecs_service - new parameter ``purge_placement_strategy`` to have the ability to remove the placement strategy of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). - - ecs_service - new parameter ``purge_placement_constraints`` to have the ability to remove the placement constraints of an ECS Service (https://github.com/ansible-collections/community.aws/pull/1716). -trivial: - - ecs_cluster - rework and repair ecs_cluster integration test. -deprecated_features: - - ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_strategy`` will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). - - ecs_service - In a release after 2024-06-01, tha default value of ``purge_placement_constraints`` will be change from ``false`` to ``true`` (https://github.com/ansible-collections/community.aws/pull/1716). \ No newline at end of file diff --git a/changelogs/fragments/eks.yml b/changelogs/fragments/eks.yml deleted file mode 100644 index 5e65d8d00a4..00000000000 --- a/changelogs/fragments/eks.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- eks_nodegroup - Update documented default diff --git a/changelogs/fragments/eks_release.yml b/changelogs/fragments/eks_release.yml deleted file mode 100644 index 07b1ccf08c6..00000000000 --- a/changelogs/fragments/eks_release.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: -- bump release version for eks_nodegroup diff --git a/changelogs/fragments/iam_access_key_docs_fix.yml b/changelogs/fragments/iam_access_key_docs_fix.yml deleted file mode 100644 index f47a15eb91f..00000000000 --- a/changelogs/fragments/iam_access_key_docs_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -trivial: - - iam_access_key - Use correct parameter names in the docs example section (https://github.com/ansible-collections/community.aws/pull/1711). \ No newline at end of file diff --git a/changelogs/fragments/sns_topic-cross-account.yml b/changelogs/fragments/sns_topic-cross-account.yml deleted file mode 100644 index 968811b7693..00000000000 --- a/changelogs/fragments/sns_topic-cross-account.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- sns_topic - avoid fetching attributes from subscribers when not setting them, this can cause permissions issues (https://github.com/ansible-collections/community.aws/pull/1418). diff --git a/galaxy.yml b/galaxy.yml index 01081cde6bf..10c4985f6bc 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: aws -version: 5.2.0 +version: 5.3.0 readme: README.md authors: - Ansible (https://github.com/ansible)