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 #2257

Merged
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
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ community.aws Release Notes

.. contents:: Topics

v8.1.0
======

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

This minor release brings several new features and bug fixes.

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 enabling multicast on Transit Gateway (https://github.com/ansible-collections/community.aws/pull/2063).
- ec2_vpc_vgw - Fix call to parent static method in class ``VGWRetry`` (https://github.com/ansible-collections/community.aws/pull/2140).

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
21 changes: 21 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3875,3 +3875,24 @@ 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 enabling multicast on Transit Gateway (https://github.com/ansible-collections/community.aws/pull/2063).
- ec2_vpc_vgw - Fix call to parent static method in class ``VGWRetry`` (https://github.com/ansible-collections/community.aws/pull/2140).
release_summary: This minor release brings several new features and bug fixes.
fragments:
- 20240423-msk_cluster-disable-tests.yml
- 20240613_ec2_placement_group_tags.yml
- 20240909-ec2_vpc_vgw-fix-super-exception.yaml
- 20240919-fix_sanity.yml
- 20240924-create-ignore-2.19.yml
- 2063-add-multicast-support.yml
- 2124-add-retry-to-ecs_taskdefinition.yml
- 2142-elb_network_lb-update-tests-to-use-valid-cert.yml
- release_summary.yml
release_date: '2025-03-04'
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.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20240919-fix_sanity.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20240924-create-ignore-2.19.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.

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"
2 changes: 0 additions & 2 deletions tests/sanity/ignore-2.19.txt
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
plugins/modules/ecs_cluster.py pylint:collection-deprecated-version
plugins/modules/glue_connection.py pylint:collection-deprecated-version
Loading