Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…#1605)

Update main branch after release 6.1.0 and 6.0.1

SUMMARY

Update main branch after release 6.1.0

ISSUE TYPE


Bugfix Pull Request
Docs Pull Request
Feature Pull Request
New Module Pull Request

COMPONENT NAME

ADDITIONAL INFORMATION

Reviewed-by: Mike Graves <[email protected]>
Reviewed-by: Helen Bailey <[email protected]>
  • Loading branch information
alinabuzachis authored Jun 13, 2023
1 parent 76fc8a0 commit aae17c7
Show file tree
Hide file tree
Showing 14 changed files with 105 additions and 30 deletions.
45 changes: 45 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,51 @@ amazon.aws Release Notes
.. contents:: Topics


v6.1.0
======

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

This release brings some new features, several bugfixes, and deprecated features are also included.

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

- ec2_snapshot - Add support for modifying createVolumePermission (https://github.com/ansible-collections/amazon.aws/pull/1464).
- ec2_snapshot_info - Add createVolumePermission to output result (https://github.com/ansible-collections/amazon.aws/pull/1464).

Deprecated Features
-------------------

- s3_object - support for passing object keys with a leading ``/`` has been deprecated and will be removed in a release after 2025-12-01 (https://github.com/ansible-collections/amazon.aws/pull/1549).

Bugfixes
--------

- autoscaling_group - fix ValidationError when describing an autoscaling group that has more than 20 target groups attached to it by breaking the request into chunks (https://github.com/ansible-collections/amazon.aws/pull/1593).
- autoscaling_group_info - fix ValidationError when describing an autoscaling group that has more than 20 target groups attached to it by breaking the request into chunks (https://github.com/ansible-collections/amazon.aws/pull/1593).
- ec2_instance - fix check_mode issue when adding network interfaces (https://github.com/ansible-collections/amazon.aws/issues/1403).
- ec2_metadata_facts - Handle decompression when EC2 instance user-data is gzip compressed. The fetch_url method from ansible.module_utils.urls does not decompress the user-data unless the header explicitly contains ``Content-Encoding: gzip`` (https://github.com/ansible-collections/amazon.aws/pull/1575).
- elb_application_lb - fix missing attributes on creation of ALB. The ``create_or_update_alb()`` was including ALB-specific attributes when updating an existing ALB but not when creating a new ALB (https://github.com/ansible-collections/amazon.aws/issues/1510).
- module_utils.acm - fixes list_certificates returning only RSA_2048 certificates (https://github.com/ansible-collections/amazon.aws/issues/1567).
- rds_instance - add support for CACertificateIdentifier to create/update rds instance (https://github.com/ansible-collections/amazon.aws/pull/1459)."

v6.0.1
======

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

This is a patch release that includes some bug fixes for the aws_ec2 inventory plugin and the s3_bucket and s3_object modules.

Bugfixes
--------

- aws_ec2 inventory plugin - fix ``NoRegionError`` when no regions are provided and region isn't specified (https://github.com/ansible-collections/amazon.aws/issues/1551).
- s3_bucket - fixes issue when deleting a bucket with unversioned objects (https://github.com/ansible-collections/amazon.aws/issues/1533).
- s3_object - fixes regression related to objects with a leading ``/`` (https://github.com/ansible-collections/amazon.aws/issues/1548).

v6.0.0
======

Expand Down
60 changes: 60 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2114,3 +2114,63 @@ releases:
name: aws_collection_constants
namespace: null
release_date: '2023-05-09'
6.0.1:
changes:
bugfixes:
- aws_ec2 inventory plugin - fix ``NoRegionError`` when no regions are provided
and region isn't specified (https://github.com/ansible-collections/amazon.aws/issues/1551).
- s3_bucket - fixes issue when deleting a bucket with unversioned objects (https://github.com/ansible-collections/amazon.aws/issues/1533).
- s3_object - fixes regression related to objects with a leading ``/`` (https://github.com/ansible-collections/amazon.aws/issues/1548).
release_summary: This is a patch release that includes some bug fixes for the
aws_ec2 inventory plugin and the s3_bucket and s3_object modules.
fragments:
- 1538-s3-null.yml
- 1548-s3_object-leading-slash.yml
- 1551-ec2_inventory-no-region.yml
- 1560-revert_1546.yml
- release_summary.yml
release_date: '2023-05-19'
6.1.0:
changes:
bugfixes:
- autoscaling_group - fix ValidationError when describing an autoscaling group
that has more than 20 target groups attached to it by breaking the request
into chunks (https://github.com/ansible-collections/amazon.aws/pull/1593).
- autoscaling_group_info - fix ValidationError when describing an autoscaling
group that has more than 20 target groups attached to it by breaking the request
into chunks (https://github.com/ansible-collections/amazon.aws/pull/1593).
- ec2_instance - fix check_mode issue when adding network interfaces (https://github.com/ansible-collections/amazon.aws/issues/1403).
- 'ec2_metadata_facts - Handle decompression when EC2 instance user-data is
gzip compressed. The fetch_url method from ansible.module_utils.urls does
not decompress the user-data unless the header explicitly contains ``Content-Encoding:
gzip`` (https://github.com/ansible-collections/amazon.aws/pull/1575).'
- elb_application_lb - fix missing attributes on creation of ALB. The ``create_or_update_alb()``
was including ALB-specific attributes when updating an existing ALB but not
when creating a new ALB (https://github.com/ansible-collections/amazon.aws/issues/1510).
- module_utils.acm - fixes list_certificates returning only RSA_2048 certificates
(https://github.com/ansible-collections/amazon.aws/issues/1567).
- rds_instance - add support for CACertificateIdentifier to create/update rds
instance (https://github.com/ansible-collections/amazon.aws/pull/1459)."
deprecated_features:
- s3_object - support for passing object keys with a leading ``/`` has been
deprecated and will be removed in a release after 2025-12-01 (https://github.com/ansible-collections/amazon.aws/pull/1549).
minor_changes:
- ec2_snapshot - Add support for modifying createVolumePermission (https://github.com/ansible-collections/amazon.aws/pull/1464).
- ec2_snapshot_info - Add createVolumePermission to output result (https://github.com/ansible-collections/amazon.aws/pull/1464).
release_summary: This release brings some new features, several bugfixes, and
deprecated features are also included.
fragments:
- 1459-rds_instance-add-support-for-ca_certificate_identifier-to-create-update-instance.yml
- 1464-ec2_snapshot-ec2_snapshot_info-support-modifying-create-volume-permissions.yml
- 1510-elb_application_lb-fix-alb-specific-attributes-not-added-on-create.yml
- 1548-s3_object-leading-slash-deprecate.yml
- 1567-list-certificate-all-key-types.yml
- 1578-rds-instance-docs.yml
- 1593-autoscaling_group_info-20-target-groups-per-call.yml
- 20230526-ec2_mertadata_facts-handle_compressed_user_data.yml
- 20230531-aws_ec2-use_ssm_inventory_documentation.yml
- ec2-inventory-hostnames-doc.yml
- ec2_instance-eni-attach-idempotency.yml
- release_summary.yml
- test-reqs.yml
release_date: '2023-06-07'

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1567-list-certificate-all-key-types.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1578-rds-instance-docs.yml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/ec2-inventory-hostnames-doc.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/ec2_instance-eni-attach-idempotency.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/test-reqs.yml

This file was deleted.

0 comments on commit aae17c7

Please sign in to comment.