Skip to content

Commit 2715efb

Browse files
authored
Prep community.aws 9.1.0 Release (#2256) (#2260)
SUMMARY Update main branch after community.aws 9.1.0 release ISSUE TYPE Docs Pull Request COMPONENT NAME Several Reviewed-by: Alina Buzachis Reviewed-by: GomathiselviS <[email protected]> Reviewed-by: Rahmanim Benny <[email protected]> Reviewed-by: Bikouo Aubin
1 parent 5e56874 commit 2715efb

12 files changed

+61
-27
lines changed

CHANGELOG.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ community.aws Release Notes
44

55
.. contents:: Topics
66

7+
v9.1.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
Preparation for the promotion of the ``aws_ssm.py`` plugin (https://forum.ansible.com/t/aws-ssm-connection-refactoring-plugin-promotion/39930) is under way in this release; this effort includes the refactoring work for methods like ``exec_command`` (https://github.com/ansible-collections/community.aws/pull/2224) as well as new methods such as ``generate_mark()`` (https://github.com/ansible-collections/community.aws/pull/2235) which generates random strings for SSM CLI delimitation.
14+
15+
Minor Changes
16+
-------------
17+
18+
- aws_ssm - Refactor ``_init_clients`` method for improved clarity and efficiency (https://github.com/ansible-collections/community.aws/pull/2223).
19+
- aws_ssm - Refactor ``_prepare_terminal()`` method for improved clarity and efficiency (https://github.com/ansible-collections/community.aws/pull/).
20+
- aws_ssm - Refactor ``exec_command`` method for improved clarity and efficiency (https://github.com/ansible-collections/community.aws/pull/2224).
21+
- aws_ssm - Add the possibility to define ``aws_ssm_plugin`` variable via environment variable and by default use the version found on the ``$PATH`` rather than require that you provide an absolute path (https://github.com/ansible-collections/community.aws/issues/1990).
22+
- aws_ssm - Add function to generate random strings for SSM CLI delimitation (https://github.com/ansible-collections/community.aws/pull/2235).
23+
- dms_endpoint - Improve resilience of parameter comparison (https://github.com/ansible-collections/community.aws/pull/2221).
24+
- s3_lifecycle - Support for min and max object size when applying the filter rules (https://github.com/ansible-collections/community.aws/pull/2205).
25+
- various modules - Linting fixups (https://github.com/ansible-collections/community.aws/pull/2221).
26+
- waf_condition - Add missing options validation to filters (https://github.com/ansible-collections/community.aws/pull/2220).
27+
28+
Bugfixes
29+
--------
30+
31+
- aws_ssm - Use ``head_bucket`` to access bucket locations in foreign AWS accounts (https://github.com/ansible-collections/community.aws/pull/1987).
32+
- aws_ssm - Strip Powershell ``CLIXML`` from ``stdout`` (https://github.com/ansible-collections/community.aws/issues/1952).
33+
734
v9.0.0
835
======
936

changelogs/changelog.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4073,3 +4073,37 @@ releases:
40734073
- refactor_ec2_placement_group.yml
40744074
- release_summary.yml
40754075
release_date: '2024-10-30'
4076+
9.1.0:
4077+
changes:
4078+
bugfixes:
4079+
- aws_ssm - use ``head_bucket`` to access bucket locations in foreign aws accounts
4080+
(https://github.com/ansible-collections/community.aws/pull/1987).
4081+
- ssm - strip Powershell CLIXML from stdout (https://github.com/ansible-collections/community.aws/issues/1952).
4082+
minor_changes:
4083+
- aws_ssm - Refactor _init_clients Method for Improved Clarity and Efficiency
4084+
(https://github.com/ansible-collections/community.aws/pull/2223).
4085+
- aws_ssm - Refactor ``_prepare_terminal()`` Method for Improved Clarity and
4086+
Efficiency (https://github.com/ansible-collections/community.aws/pull/).
4087+
- aws_ssm - Refactor exec_command Method for Improved Clarity and Efficiency
4088+
(https://github.com/ansible-collections/community.aws/pull/2224).
4089+
- connection/aws_ssm - Add the possibility to define ``aws_ssm_plugin`` variable
4090+
via environment variable and by default use the version found on the $PATH
4091+
rather than require that you provide an absolute path (https://github.com/ansible-collections/community.aws/issues/1990).
4092+
- dms_endpoint - improve resilience of parameter comparison (https://github.com/ansible-collections/community.aws/pull/2221).
4093+
- s3_lifecycle - Support for min and max object size when applying the filter
4094+
rules (https://github.com/ansible-collections/community.aws/pull/2205).
4095+
- ssm - add function to generate random strings for SSM CLI delimitation (https://github.com/ansible-collections/community.aws/pull/2235).
4096+
- various modules - linting fixups (https://github.com/ansible-collections/community.aws/pull/2221).
4097+
- waf_condition - adds missing options validation to filters (https://github.com/ansible-collections/community.aws/pull/2220).
4098+
fragments:
4099+
- 1979-use-headbucket.yml
4100+
- 20240426_fix_ssm_clixml.yml
4101+
- 20250127-pylint.yml
4102+
- 20250127-waf_confition.yml
4103+
- 20250130-aws_ssm-refactor-exec_command.yaml
4104+
- 20250204-aws_ssm-refactor-prepare_terminal.yml
4105+
- 20250217-connection-aws_ssm-add-env-variable-for-aws_ssm_plugin.yaml
4106+
- 2096-refactor-random-helper-function.yml
4107+
- 2205-support-minmax-s3lifecycle.yml
4108+
- refactor_ssm_init_client.yml
4109+
release_date: '2025-03-04'

changelogs/fragments/1979-use-headbucket.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/20240426_fix_ssm_clixml.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/20250127-pylint.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelogs/fragments/20250127-waf_confition.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20250130-aws_ssm-refactor-exec_command.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20250204-aws_ssm-refactor-prepare_terminal.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20250217-connection-aws_ssm-add-env-variable-for-aws_ssm_plugin.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelogs/fragments/2096-refactor-random-helper-function.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/2205-support-minmax-s3lifecycle.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/refactor_ssm_init_client.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)