Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep community.aws 8.1.0 #2138

Open
wants to merge 2 commits into
base: stable-8
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ community.aws Release Notes

.. contents:: Topics

v8.1.0
======

Release Summary
---------------

This release includes a bugfix and two new features. The ``ecs_taskdefinition`` module supports the ``tags`` option and the ``ec2_transit_gateway`` module supports enabling multicast on Transit Gateways.

Minor Changes
-------------

- ec2_placement_group - Added support for creating with ``tags`` (https://github.com/ansible-collections/community.aws/pull/2081).
- ec2_transit_gateway - Support for enable multicast on Transit Gateway (https://github.com/ansible-collections/community.aws/pull/2063).

Bugfixes
--------

- ecs_taskdefinition - avoid throttling exceptions on task definitions with a large number of revisions by using the retry mechanism (https://github.com/ansible-collections/community.aws/issues/2123).

v8.0.0
======

Expand Down
18 changes: 18 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3875,3 +3875,21 @@ releases:
- python37.yml
- workflow-requirements.yml
release_date: '2024-05-20'
8.1.0:
changes:
bugfixes:
- ecs_taskdefinition - avoid throttling exceptions on task definitions with
a large number of revisions by using the retry mechanism (https://github.com/ansible-collections/community.aws/issues/2123).
minor_changes:
- ec2_placement_group - Added support for creating with ``tags`` (https://github.com/ansible-collections/community.aws/pull/2081).
- ec2_transit_gateway - Support for enable multicast on Transit Gateway (https://github.com/ansible-collections/community.aws/pull/2063).
release_summary: This release includes a bugfix and two new features. The ``ecs_taskdefinition``
module supports the ``tags`` option and the ``ec2_transit_gateway`` module
supports enabling multicast on Transit Gateways.
fragments:
- 20240423-msk_cluster-disable-tests.yml
- 20240613_ec2_placement_group_tags.yml
- 2063-add-multicast-support.yml
- 2124-add-retry-to-ecs_taskdefinition.yml
- release_summary.yml
release_date: '2024-09-03'
2 changes: 0 additions & 2 deletions changelogs/fragments/20240423-msk_cluster-disable-tests.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20240613_ec2_placement_group_tags.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/2063-add-multicast-support.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/2124-add-retry-to-ecs_taskdefinition.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: community
name: aws
version: 8.0.0
version: 8.1.0
readme: README.md
authors:
- Ansible (https://github.com/ansible)
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@


COMMUNITY_AWS_COLLECTION_NAME = "community.aws"
COMMUNITY_AWS_COLLECTION_VERSION = "8.0.0"
COMMUNITY_AWS_COLLECTION_VERSION = "8.1.0"