Skip to content

Commit

Permalink
Prep community.aws 7.2.0 (#2064)
Browse files Browse the repository at this point in the history
Prep community.aws 7.2.0

SUMMARY
Prep release 7.2.0. Note: I updated the aws_ssm connection fix from minor change to bugfix because that seemed more accurate but lmk if it needs to be switched back.
ISSUE TYPE

Docs Pull Request

Reviewed-by: Markus Bergholz <git@osuv.de>
Reviewed-by: Alina Buzachis
  • Loading branch information
hakbailey committed Apr 5, 2024
1 parent 5ad20e2 commit 94b8863
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 16 deletions.
29 changes: 23 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ community.aws Release Notes

.. contents:: Topics

v7.2.0
======

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

This release includes a new module ``dynamodb_table_info``, new features for the ``glue_job`` and ``msk_cluster`` modules, and a bugfix for the ``aws_ssm`` connection plugin.

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

- glue_job - add support for 2 new instance types which are G.4X and G.8X (https://github.com/ansible-collections/community.aws/pull/2048).
- msk_cluster - Support for additional ``m5`` and ``m7g`` types of MSK clusters (https://github.com/ansible-collections/community.aws/pull/1947).

Bugfixes
--------

- ssm(connection) - fix bucket region logic when region is ``us-east-1`` (https://github.com/ansible-collections/community.aws/pull/1908).

New Modules
-----------

- dynamodb_table_info - Returns information about a Dynamo DB table

v7.1.0
======
Expand Down Expand Up @@ -134,7 +157,6 @@ This release brings some new plugins and features. Several bugfixes, breaking ch
The community.aws collection has dropped support for ``botocore<1.25.0`` and ``boto3<1.22.0``.
Support for Python 3.6 has also been dropped.


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

Expand Down Expand Up @@ -207,7 +229,6 @@ Release Summary

This release contains a number of bugfixes for various modules, as well as new features for the ``ec2_launch_template`` and ``msk_cluster`` modules. This is the last planned minor release prior to the release of version 6.0.0.


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

Expand Down Expand Up @@ -303,7 +324,6 @@ modules.
As well as improvements to the ``ecs_cluster``, ``ec2_ecr``,
``ecs_service``, ``iam_role`` and ``ssm_parameter`` plugins.


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

Expand Down Expand Up @@ -369,7 +389,6 @@ Support for ``ansible-core<2.11`` has also been dropped.

This release also brings some new features, bugfixes, breaking changes and deprecated features.


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

Expand Down Expand Up @@ -531,7 +550,6 @@ Release Summary

This release contains a minor bugfix for the ``sns_topic`` module as well as corrections to the documentation for various modules. This is the last planned release of the 4.x series.


Bugfixes
--------

Expand Down Expand Up @@ -889,7 +907,6 @@ Release Summary

Following the release of community.aws 5.0.0, 3.6.0 is a bugfix release and the final planned release for the 3.x series.


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

Expand Down
21 changes: 21 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3734,3 +3734,24 @@ releases:
- release.yml
- ssm-fedora34.yml
release_date: '2024-01-10'
7.2.0:
changes:
bugfixes:
- ssm(connection) - fix bucket region logic when region is ``us-east-1`` (https://github.com/ansible-collections/community.aws/pull/1908).
minor_changes:
- glue_job - add support for 2 new instance types which are G.4X and G.8X (https://github.com/ansible-collections/community.aws/pull/2048).
- msk_cluster - Support for additional ``m5`` and ``m7g`` types of MSK clusters
(https://github.com/ansible-collections/community.aws/pull/1947).
release_summary: This release includes a new module ``dynamodb_table_info``,
new features for the ``glue_job`` and ``msk_cluster`` modules, and a bugfix
for the ``aws_ssm`` connection plugin.
fragments:
- 1908-fix_find_out_bucket_region_logic.yml
- 1947-add_support_msk_addtinal_type.yml
- 20240402-lambda-test-runtime.yml
- 2048-add-new-instance-types-in-gluejob.yaml
modules:
- description: Returns information about a Dynamo DB table
name: dynamodb_table_info
namespace: ''
release_date: '2024-04-05'

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1947-add_support_msk_addtinal_type.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/20240402-lambda-test-runtime.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: 7.1.0
version: 7.2.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 = "7.1.0"
COMMUNITY_AWS_COLLECTION_VERSION = "7.2.0"

0 comments on commit 94b8863

Please sign in to comment.