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

Prepare release 7.1.0 #2040

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 @@ -5,6 +5,26 @@ community.aws Release Notes
.. contents:: Topics


v7.1.0
======

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

This release includes new features for the ``cloudfront_distribution`` and ``mq_broker`` modules, as well as a bugfix for the ``aws_ssm`` connection plugin needed when connecting to hosts with Bash 5.1.0 and later.

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

- aws_ssm - Updated the documentation to explicitly state that an S3 bucket is required, the behavior of the files in that bucket, and requirements around that. (https://github.com/ansible-collections/community.aws/issues/1775).
- cloudfront_distribution - added support for ``cache_policy_id`` and ``origin_request_policy_id`` for behaviors (https://github.com/ansible-collections/community.aws/pull/1589)
- mq_broker - add support to wait for broker state via ``wait`` and ``wait_timeout`` parameter values (https://github.com/ansible-collections/community.aws/pull/1879).

Bugfixes
--------

- aws_ssm - disable `enable-bracketed-paste` to fix issue with amazon linux 2023 and other OSes (https://github.com/ansible-collections/community.aws/issues/1756)

v7.0.0
======

Expand Down
24 changes: 24 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3710,3 +3710,27 @@ releases:
- release_summary.yml
- workflow-requirements.yml
release_date: '2023-11-06'
7.1.0:
changes:
bugfixes:
- aws_ssm - disable `enable-bracketed-paste` to fix issue with amazon linux
2023 and other OSes (https://github.com/ansible-collections/community.aws/issues/1756)
minor_changes:
- aws_ssm - Updated the documentation to explicitly state that an S3 bucket
is required, the behavior of the files in that bucket, and requirements around
that. (https://github.com/ansible-collections/community.aws/issues/1775).
- cloudfront_distribution - added support for ``cache_policy_id`` and ``origin_request_policy_id``
for behaviors (https://github.com/ansible-collections/community.aws/pull/1589)
- mq_broker - add support to wait for broker state via ``wait`` and ``wait_timeout``
parameter values (https://github.com/ansible-collections/community.aws/pull/1879).
release_summary: This release includes new features for the ``cloudfront_distribution``
and ``mq_broker`` modules, as well as a bugfix for the ``aws_ssm`` connection
plugin needed when connecting to hosts with Bash 5.1.0 and later.
fragments:
- 1589-cloudfront_distribution-add-policies.yml
- 1775-aws_ssm-s3-docs.yaml
- 1839-disable-bracketed-paste.yml
- 1879-mq_broker-add-wait.yml
- release.yml
- ssm-fedora34.yml
release_date: '2024-01-10'

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1775-aws_ssm-s3-docs.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1839-disable-bracketed-paste.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1879-mq_broker-add-wait.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/ssm-fedora34.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: 7.0.0
version: 7.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 = "7.0.0"
COMMUNITY_AWS_COLLECTION_VERSION = "7.1.0"
Loading