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

community.aws 2.6.0 release prep #1247

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
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ community.aws Release Notes
.. contents:: Topics


v2.6.0
======

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

This is the last planned 2.x release of the ``community.aws`` collection.
Consider upgrading to the latest version of ``community.aws`` soon.

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

- ecs_service - ``deployment_circuit_breaker`` has been added as a supported feature (https://github.com/ansible-collections/community.aws/pull/1215).
- ecs_service - add ``service`` alias to address the ecs service name with the same parameter as the ecs_service_info module is doing (https://github.com/ansible-collections/community.aws/pull/1187).
- ecs_service_info - add ``name`` alias to address the ecs service name with the same parameter as the ecs_service module is doing (https://github.com/ansible-collections/community.aws/pull/1187).

Bugfixes
--------

- ecs_service - fix broken change detect of ``health_check_grace_period_seconds`` parameter when not specified (https://github.com/ansible-collections/community.aws/pull/1212).
- ecs_service - use default cluster name of ``default`` when not input (https://github.com/ansible-collections/community.aws/pull/1212).
- ecs_task - dont require ``cluster`` and use name of ``default`` when not input (https://github.com/ansible-collections/community.aws/pull/1212).
- wafv2_ip_set - fix bug where incorrect changed state was returned when only changing the description (https://github.com/ansible-collections/community.aws/pull/1211).

v2.5.0
======

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ AWS related modules and plugins supported by the Ansible Cloud team are in the [

This collection has been tested against following Ansible versions: **>=2.9.10**.

For collections that support Ansible 2.9, please ensure you update your `network_os` to use the
fully qualified collection name (for example, `cisco.ios.ios`).
Plugins and modules within a collection may be tested with only specific Ansible versions.
A collection may contain metadata that identifies these versions.
PEP440 is the schema used to describe the versions of Ansible.
Expand Down
28 changes: 28 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1613,3 +1613,31 @@ releases:
- 1300-ecs_service-placementConstraints.yml
- 2.5.0.yml
release_date: '2022-05-30'
2.6.0:
changes:
bugfixes:
- ecs_service - fix broken change detect of ``health_check_grace_period_seconds``
parameter when not specified (https://github.com/ansible-collections/community.aws/pull/1212).
- ecs_service - use default cluster name of ``default`` when not input (https://github.com/ansible-collections/community.aws/pull/1212).
- ecs_task - dont require ``cluster`` and use name of ``default`` when not input
(https://github.com/ansible-collections/community.aws/pull/1212).
- wafv2_ip_set - fix bug where incorrect changed state was returned when only
changing the description (https://github.com/ansible-collections/community.aws/pull/1211).
minor_changes:
- ecs_service - ``deployment_circuit_breaker`` has been added as a supported
feature (https://github.com/ansible-collections/community.aws/pull/1215).
- ecs_service - add ``service`` alias to address the ecs service name with the
same parameter as the ecs_service_info module is doing (https://github.com/ansible-collections/community.aws/pull/1187).
- ecs_service_info - add ``name`` alias to address the ecs service name with
the same parameter as the ecs_service module is doing (https://github.com/ansible-collections/community.aws/pull/1187).
release_summary: 'This is the last planned 2.x release of the ``community.aws``
collection.

Consider upgrading to the latest version of ``community.aws`` soon.'
fragments:
- 0001-ecs-service-aliases.yml
- 1211-wafv2_ip_set-description.yml
- 1212-ecs_service-fix-broken-change-detect.yml
- 1215-ecs-service-deployment-circuit-breaker-support.yml
- 2.6.0.yml
release_date: '2022-06-22'
3 changes: 0 additions & 3 deletions changelogs/fragments/0001-ecs-service-aliases.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1211-wafv2_ip_set-description.yml

This file was deleted.

This file was deleted.

This file was deleted.

3 changes: 2 additions & 1 deletion docs/community.aws.ec2_customer_gateway_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ Parameters
<td>
</td>
<td>
<div>Border Gateway Protocol (BGP) Autonomous System Number (ASN), required when <em>state=present</em>.</div>
<div>Border Gateway Protocol (BGP) Autonomous System Number (ASN).</div>
<div>Defaults to <code>65000</code> if not specified when <em>state=present</em>.</div>
</td>
</tr>
<tr>
Expand Down
1 change: 1 addition & 0 deletions docs/community.aws.ecs_service_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ Parameters
</td>
<td>
<div>One or more services to get details for</div>
<div style="font-size: small; color: darkgreen"><br/>aliases: name</div>
</td>
</tr>
<tr>
Expand Down
Loading