Skip to content

Commit

Permalink
prepare 2.3.0 (#939)
Browse files Browse the repository at this point in the history
* prepare 2.3.0

* Update changelogs/changelog.yaml

Co-authored-by: Alina Buzachis <[email protected]>

Co-authored-by: Alina Buzachis <[email protected]>
  • Loading branch information
markuman and alinabuzachis committed Feb 14, 2022
1 parent d67a9a6 commit f09467f
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 12 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ community.aws Release Notes
.. contents:: Topics


v2.3.0
======

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

This is the minor release of the ``community.aws`` collection.
This changelog contains all changes to the modules and plugins in this collection
that have been made after the previous release.

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

- elb_instance - `wait` parameter is no longer ignored (https://github.com/ansible-collections/community.aws/pull/826)

Bugfixes
--------

- cloudfront_distribution - Dont pass ``s3_origin_access_identity_enabled`` to API request (https://github.com/ansible-collections/community.aws/pull/881).
- execute_lambda - Wait for Lambda function State = Active before executing (https://github.com/ansible-collections/community.aws/pull/857)
- lambda - Wait for Lambda function State = Active & LastUpdateStatus = Successful before updating (https://github.com/ansible-collections/community.aws/pull/857)

v2.2.0
======

Expand Down
22 changes: 22 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1527,3 +1527,25 @@ releases:
name: ec2_asg_scheduled_action
namespace: ''
release_date: '2022-01-13'
2.3.0:
changes:
bugfixes:
- cloudfront_distribution - Dont pass ``s3_origin_access_identity_enabled``
to API request (https://github.com/ansible-collections/community.aws/pull/881).
- execute_lambda - Wait for Lambda function State = Active before executing
(https://github.com/ansible-collections/community.aws/pull/857)
- lambda - Wait for Lambda function State = Active & LastUpdateStatus = Successful
before updating (https://github.com/ansible-collections/community.aws/pull/857)
minor_changes:
- elb_instance - `wait` parameter is no longer ignored (https://github.com/ansible-collections/community.aws/pull/826)
release_summary: 'This is the minor release of the ``community.aws`` collection.
This changelog contains all changes to the modules and plugins in this collection
that have been made after the previous release.'
fragments:
- 2.3.0.yml
- 825-fix-elb-wait.yml
- 857-lambda-wait-before.yml
- 881-cloudfront-bug.yml
release_date: '2022-02-14'
2 changes: 0 additions & 2 deletions changelogs/fragments/825-fix-elb-wait.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/857-lambda-wait-before.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/881-cloudfront-bug.yml

This file was deleted.

8 changes: 4 additions & 4 deletions docs/community.aws.iam_managed_policy_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,14 @@ Examples
state: present
# Update a policy with a new default version
- name: Create IAM Managed Policy
- name: Update an IAM Managed Policy with new default version
community.aws.iam_managed_policy:
policy_name: "ManagedPolicy"
policy: "{{ lookup('file', 'managed_policy_update.json') }}"
state: present
# Update a policy with a new non default version
- name: Create IAM Managed Policy
- name: Update an IAM Managed Policy with a non default version
community.aws.iam_managed_policy:
policy_name: "ManagedPolicy"
policy:
Expand All @@ -388,7 +388,7 @@ Examples
state: present
# Update a policy and make it the only version and the default version
- name: Create IAM Managed Policy
- name: Update an IAM Managed Policy with default version as the only version
community.aws.iam_managed_policy:
policy_name: "ManagedPolicy"
policy: |
Expand All @@ -404,7 +404,7 @@ Examples
state: present
# Remove a policy
- name: Create IAM Managed Policy
- name: Remove an existing IAM Managed Policy
community.aws.iam_managed_policy:
policy_name: "ManagedPolicy"
state: absent
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: community
name: aws
version: 2.2.0
version: 2.3.0
readme: README.md
authors:
- Ansible (https://github.com/ansible)
Expand Down

0 comments on commit f09467f

Please sign in to comment.