Skip to content

Commit 31b011c

Browse files
Prep amazon.aws 8.1.0 (#2178)
* Prep amazon.aws 8.1.0 Signed-off-by: Alina Buzachis <[email protected]> * update aws user-agent variable with version from galaxy.yml --------- Signed-off-by: Alina Buzachis <[email protected]> Co-authored-by: alinabuzachis <[email protected]>
1 parent ae1f15f commit 31b011c

8 files changed

+34
-14
lines changed

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ amazon.aws Release Notes
44

55
.. contents:: Topics
66

7+
v8.1.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release includes several documentation improvements and two new features for the ``s3_bucket`` module.
14+
15+
Minor Changes
16+
-------------
17+
18+
- s3_bucket - Add ``object_lock_default_retention`` to set Object Lock default retention configuration for S3 buckets (https://github.com/ansible-collections/amazon.aws/pull/2062).
19+
- s3_bucket - Add support for enabling Amazon S3 Transfer Acceleration by setting the ``accelerate_enabled`` option (https://github.com/ansible-collections/amazon.aws/pull/2046).
20+
721
v8.0.1
822
======
923

changelogs/changelog.yaml

+18-2
Original file line numberDiff line numberDiff line change
@@ -3034,11 +3034,27 @@ releases:
30343034
is specified (https://github.com/ansible-collections/amazon.aws/pull/1979).
30353035
- s3_object - fixed issue which was causing ``MemoryError`` exceptions when
30363036
downloading large files (https://github.com/ansible-collections/amazon.aws/issues/2107).
3037-
release_summary: This release includes some bug fixes for the ``s3_object``, ``ec2_instance``
3038-
and ``backup_plan_info`` modules.
3037+
release_summary: This release includes some bug fixes for the ``s3_object``,
3038+
``ec2_instance`` and ``backup_plan_info`` modules.
30393039
fragments:
30403040
- 1979-do-not-ignore-ipv6-addresses.yaml
30413041
- 2083-backup_plan_info-bugfix-get-info-for-all-plans.yml
30423042
- 2107-s3_download.yml
30433043
- release_summary.yml
30443044
release_date: '2024-06-05'
3045+
8.1.0:
3046+
changes:
3047+
minor_changes:
3048+
- s3_bucket - Add ``object_lock_default_retention`` to set Object Lock default
3049+
retention configuration for S3 buckets (https://github.com/ansible-collections/amazon.aws/pull/2062).
3050+
- s3_bucket - Add support for enabling Amazon S3 Transfer Acceleration by setting
3051+
the ``accelerate_enabled`` option (https://github.com/ansible-collections/amazon.aws/pull/2046).
3052+
release_summary: This release includes several documentation improvements and
3053+
two new features for the ``s3_bucket`` module.
3054+
fragments:
3055+
- 2141-rds-t3-m4.yml
3056+
- fix_args_spec_supoptions.yml
3057+
- release_summary.yml
3058+
- s3_bucket-accelerate_option.yml
3059+
- s3_bucket-object-retention.yml
3060+
release_date: '2024-07-02'

changelogs/fragments/2141-rds-t3-m4.yml

-2
This file was deleted.

changelogs/fragments/fix_args_spec_supoptions.yml

-4
This file was deleted.

changelogs/fragments/s3_bucket-accelerate_option.yml

-2
This file was deleted.

changelogs/fragments/s3_bucket-object-retention.yml

-2
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: amazon
33
name: aws
4-
version: 8.0.1
4+
version: 8.1.0
55
readme: README.md
66
authors:
77
- Ansible (https://github.com/ansible)

plugins/module_utils/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
55

66
AMAZON_AWS_COLLECTION_NAME = "amazon.aws"
7-
AMAZON_AWS_COLLECTION_VERSION = "8.0.1"
7+
AMAZON_AWS_COLLECTION_VERSION = "8.1.0"
88

99

1010
_collection_info_context = {

0 commit comments

Comments
 (0)