summaryrefslogtreecommitdiffstats
path: root/collections-debian-merged/ansible_collections/amazon/aws/changelogs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 20:03:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 20:03:01 +0000
commita453ac31f3428614cceb99027f8efbdb9258a40b (patch)
treef61f87408f32a8511cbd91799f9cececb53e0374 /collections-debian-merged/ansible_collections/amazon/aws/changelogs
parentInitial commit. (diff)
downloadansible-upstream.tar.xz
ansible-upstream.zip
Adding upstream version 2.10.7+merged+base+2.10.8+dfsg.upstream/2.10.7+merged+base+2.10.8+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collections-debian-merged/ansible_collections/amazon/aws/changelogs')
-rw-r--r--collections-debian-merged/ansible_collections/amazon/aws/changelogs/changelog.yaml230
-rw-r--r--collections-debian-merged/ansible_collections/amazon/aws/changelogs/config.yaml29
-rw-r--r--collections-debian-merged/ansible_collections/amazon/aws/changelogs/fragments/.keep0
3 files changed, 259 insertions, 0 deletions
diff --git a/collections-debian-merged/ansible_collections/amazon/aws/changelogs/changelog.yaml b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/changelog.yaml
new file mode 100644
index 00000000..5bb2eb13
--- /dev/null
+++ b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/changelog.yaml
@@ -0,0 +1,230 @@
+ancestor: null
+releases:
+ 1.1.0:
+ changes:
+ breaking_changes:
+ - aws_s3 - can now delete versioned buckets even when they are not empty - set
+ mode to delete to delete a versioned bucket and everything in it.
+ bugfixes:
+ - aws_ec2 - fix idempotency when managing tags
+ - aws_ec2 - fix idempotency when metrics are enable
+ - aws_s3 - Delete objects and delete markers so versioned buckets can be removed.
+ - aws_s3 - Try to wait for the bucket to exist before setting the access control
+ list.
+ - cloudformation_info - Fix a KeyError returning information about the stack(s).
+ - ec2_asg - Ensure "wait" is honored during replace operations
+ - ec2_launch_template - Update output to include latest_version and default_version,
+ matching the documentation
+ - ec2_transit_gateway - Use AWSRetry before ClientError is handled when describing
+ transit gateways
+ - ec2_transit_gateway - fixed issue where auto_attach set to yes was not being
+ honored (https://github.com/ansible/ansible/issues/61907)
+ - ec2_vol - fix filtering bug
+ - s3_bucket - Accept XNotImplemented response to support NetApp StorageGRID.
+ deprecated_features:
+ - cloudformation - The ``template_format`` option had no effect since Ansible
+ 2.3 and will be removed after 2022-06-01
+ - cloudformation - the ``template_format`` option has been deprecated and will
+ be removed in a later release. It has been ignored by the module since Ansible
+ 2.3.
+ - data_pipeline - The ``version`` option had no effect and will be removed in
+ after 2022-06-01
+ - ec2 - in a later release, the ``group`` and ``group_id`` options will become
+ mutually exclusive. Currently ``group_id`` is ignored if you pass both.
+ - ec2_ami - The ``no_device`` alias ``NoDevice`` has been deprecated and will
+ be removed after 2022-06-01
+ - ec2_ami - The ``virtual_name`` alias ``VirtualName`` has been deprecated and
+ will be removed after 2022-06-01
+ - ec2_eip - The ``wait_timeout`` option had no effect and will be removed after
+ 2022-06-01
+ - ec2_key - The ``wait_timeout`` option had no effect and will be removed after
+ 2022-06-01
+ - ec2_key - The ``wait`` option had no effect and will be removed after 2022-06-01
+ - ec2_key - the ``wait_timeout`` option has been deprecated and will be removed
+ in a later release. It has had no effect since Ansible 2.5.
+ - ec2_key - the ``wait`` option has been deprecated and will be removed in a
+ later release. It has had no effect since Ansible 2.5.
+ - ec2_lc - The ``associate_public_ip_address`` option had no effect and will
+ be removed after 2022-06-01
+ - ec2_tag - deprecate the ``list`` option in favor of ec2_tag_info
+ - ec2_tag - support for ``list`` as a state has been deprecated and will be
+ removed in a later release. The ``ec2_tag_info`` can be used to fetch the
+ tags on an EC2 resource.
+ major_changes:
+ - ec2 module_utils - The ``AWSRetry`` decorator no longer catches ``NotFound``
+ exceptions by default. ``NotFound`` exceptions need to be explicitly added
+ using ``catch_extra_error_codes``. Some AWS modules may see an increase in
+ transient failures due to AWS''s eventual consistency model.
+ minor_changes:
+ - Add `aws_security_token`, `aws_endpoint_url` and `endpoint_url` aliases to
+ improve AWS module parameter naming consistency.
+ - Add support for `aws_ca_bundle` to boto3 based AWS modules
+ - Add support for configuring boto3 profiles using `AWS_PROFILE` and `AWS_DEFAULT_PROFILE`
+ - Added check_mode support to aws_az_info
+ - Added check_mode support to ec2_eni_info
+ - Added check_mode support to ec2_snapshot_info
+ - ansible_dict_to_boto3_filter_list - convert integers and bools to strings
+ before using them in filters.
+ - aws_direct_connect_virtual_interface - add direct_connect_gateway_id parameter.
+ This field is only applicable in private VIF cases (public=False) and is mutually
+ exclusive to virtual_gateway_id.
+ - cloudformation - Return change_set_id in the cloudformation output if a change
+ set was created.
+ - ec2 - deprecate allowing both group and group_id - currently we ignore group_id
+ if both are passed.
+ - ec2_ami_info - allow integer and bool values for filtering images (https://github.com/ansible/ansible/issues/43570).
+ - ec2_asg - Add support for Max Instance Lifetime
+ - ec2_asg - Add the ability to use mixed_instance_policy in launch template
+ driven autoscaling groups
+ - ec2_asg - Migrated to AnsibleAWSModule
+ - ec2_placement_group - make `name` a required field.
+ - ec2_vol_info - Code cleanup and use of the AWSRetry decorator to improve stability
+ - ec2_vpc_net - Enable IPv6 CIDR assignment
+ fragments:
+ - 107_info_check_mode.yml
+ - 108-ec2_vol-deprecate-list.yml
+ - 27800-ec2_vpc_net-ipv6-support.yml
+ - 28-ec2_ami_info_int_bool_filter.yml
+ - 52_direct_connect_gateway_id.yml
+ - 54435_aws_s3_fix_removing_versioned_buckets.yaml
+ - 61279-ec2_launch_template-output.yml
+ - 61284-ec2_asg-idempotency.yml
+ - 61735-wait-for-s3-bucket-to-exist-before-modifying.yaml
+ - 61933-ec2_transit_gateway-honor-auto_attach-setting.yaml
+ - 62290-fix-cloudformation_info-KeyError.yaml
+ - 63752-cloudformation-return-changeset-id.yaml
+ - 64230-deprecate-unused.yml
+ - 64368-deprecate-unused.yml
+ - 65555-amazon-sanity-required.yml
+ - 65960-ec2_vol-filtering-bugfix.yml
+ - 66840-ec2_tag-deprecate-list.yaml
+ - 66863-ec2_asg-max_instance_lifetime-and-honor-wait-on-replace.yaml
+ - 66966-ec2-group-and-group_id.yml
+ - 66979-ec2_vol_info-ansibleawsmodule.yaml
+ - 67045-ec2_asg_mixed_instance_policy.yml
+ - 67247-fix-ec2_transit_gateway-retries.yaml
+ - 67462-s3_bucket-accept-storagegrid-response.yaml
+ - 93-deprecate-accidental.yml
+ - 99-awsmodule.yml
+ - porting-guide.yml
+ release_date: '2020-08-13'
+ 1.2.0:
+ changes:
+ bugfixes:
+ - ec2 module_utils - Ensure boto3 verify parameter isn't overridden by setting
+ a profile (https://github.com/ansible-collections/amazon.aws/issues/129)
+ - 's3_bucket - Ceph compatibility: treat error code NoSuchTagSetError used by
+ Ceph synonymously to NoSuchTagSet used by AWS'
+ deprecated_features:
+ - All AWS Modules - ``aws_access_key``, ``aws_secret_key`` and ``security_token``
+ will be made mutually exclusive with ``profile`` after 2022-06-01.
+ minor_changes:
+ - ec2 module_utils - Update ``ec2_connect`` (boto2) behaviour so that ``ec2_url``
+ overrides ``region``.
+ - module_utils.core - Support passing arbitrary extra keys to fail_json_aws,
+ matching capabilities of fail_json.
+ fragments:
+ - 121-ec2_url-resolution-order.yaml
+ - 129-verify_overridden.yml
+ - 140-fail_json_aws_keys.yml
+ - 151-deprecate-profile-credential-combination.yml
+ - 71484-ceph-tag-set-compat.yaml
+ release_date: '2020-08-28'
+ 1.2.1:
+ changes:
+ minor_changes:
+ - ec2_eni - Add support for tagging.
+ - ec2_eni - Port ec2_eni module to boto3 and add an integration test suite.
+ - ec2_eni_info - Add retries on transient AWS failures.
+ - ec2_eni_info - Add support for providing an ENI ID.
+ fragments:
+ - 141-ec2_eni-boto3.yml
+ release_date: '2020-10-07'
+ 1.3.0:
+ changes:
+ bugfixes:
+ - ec2 - Code fix so module can create ec2 instances with ``ec2_volume_iops``
+ option (https://github.com/ansible-collections/amazon.aws/pull/177).
+ - ec2 - ignore terminated instances and instances that are shutting down when
+ starting and stopping (https://github.com/ansible-collections/amazon.aws/issues/146).
+ - ec2_group - Fixes error handling during tagging failures (https://github.com/ansible-collections/amazon.aws/issues/210).
+ - ec2_group_info - Code fix so module works with Python 3.8 (make dict immutable
+ in loop) (https://github.com/ansible-collections/amazon.aws/pull/181)
+ minor_changes:
+ - aws_caller_info - add AWSRetry decorator to automatically retry on common
+ temporary failures (https://github.com/ansible-collections/amazon.aws/pull/208)
+ - aws_s3 - Add support for uploading templated content (https://github.com/ansible-collections/amazon.aws/pull/20).
+ - aws_secret - add "on_missing" and "on_denied" option (https://github.com/ansible-collections/amazon.aws/pull/122).
+ - ec2_ami - Add retries for ratelimiting related errors (https://github.com/ansible-collections/amazon.aws/pull/195).
+ - ec2_ami - fixed and streamlined ``max_attempts`` logic when waiting for AMI
+ creation to finish (https://github.com/ansible-collections/amazon.aws/pull/194).
+ - ec2_ami - increased default ``wait_timeout`` to 1200 seconds (https://github.com/ansible-collections/amazon.aws/pull/194).
+ - ec2_ami_info - Add retries for ratelimiting related errors (https://github.com/ansible-collections/amazon.aws/pull/195).
+ - ec2_eni - Improve reliability of the module by adding waiters and performing
+ lookups by ENI ID rather than repeated searches (https://github.com/ansible-collections/amazon.aws/pull/180).
+ - ec2_eni_info - Improve reliability of the module by adding waiters and performing
+ lookups by ENI ID rather than repeated searches (https://github.com/ansible-collections/amazon.aws/pull/180).
+ - ec2_group - add AWSRetry decorator to automatically retry on common temporary
+ failures (https://github.com/ansible-collections/amazon.aws/pull/207)
+ - ec2_group_info - add AWSRetry decorator to automatically retry on common temporary
+ failures (https://github.com/ansible-collections/amazon.aws/pull/207)
+ - ec2_snapshot_info - add AWSRetry decorator to automatically retry on common
+ temporary failures (https://github.com/ansible-collections/amazon.aws/pull/208)
+ - ec2_vol - Add automatic retries on AWS rate limit errors (https://github.com/ansible-collections/amazon.aws/pull/199).
+ - ec2_vol - ported ec2_vol to use boto3 (https://github.com/ansible-collections/amazon.aws/pull/53).
+ - ec2_vpc_dhcp_option_info - add AWSRetry decorator to automatically retry on
+ common temporary failures (https://github.com/ansible-collections/amazon.aws/pull/208)
+ - module_utils/core - add helper function ``scrub_none_parameters`` to remove
+ params set to ``None`` (https://github.com/ansible-collections/community.aws/issues/251).
+ - module_utils/waiters - Add retries to our waiters for the same failure codes
+ that we retry with AWSRetry (https://github.com/ansible-collections/amazon.aws/pull/185)
+ - s3_bucket - Add support for managing the ``public_access`` settings (https://github.com/ansible-collections/amazon.aws/pull/171).
+ fragments:
+ - 122-aws_secret-add-on_missing-and-on_denied-option.yml
+ - 171-s3_bucket-public_access.yml
+ - 177-fix-ec2-volume-creation-issue-with-iops.yaml
+ - 180-ec2_eni-stabilisation.yml
+ - 181-ec2-group-info-python-fix.yaml
+ - 184-scrub-none-params.yaml
+ - 185-waiter-retry-failures.yml
+ - 194-ec2-ami-max-attempts.yaml
+ - 195-ec2_ami-retries.yml
+ - 197-ignore-terminated-instances.yaml
+ - 199-ec2_vol-retries.yml
+ - 20-aws_s3-content.yml
+ - 207-ec2_group-retries.yml
+ - 208-info-retries.yaml
+ - 211-fix-error-handling-during-tagging-failure.yaml
+ - 53-ec2_vol-boto3-port.yml
+ release_date: '2020-12-10'
+ 1.4.0:
+ changes:
+ bugfixes:
+ - ec2_vol - a creation or update now returns a structure with an up to date
+ list of tags (https://github.com/ansible-collections/amazon.aws/pull/241).
+ minor_changes:
+ - aws_ec2 - Add hostname options concatenation
+ - aws_ec2 inventory plugin - avoid a superfluous import of ``ansible.utils.display.Display``
+ (https://github.com/ansible-collections/amazon.aws/pull/226).
+ - aws_ec2 module - Replace inverse aws instance-state-name filters !terminated,
+ !shutting-down in favor of postive filters pending, running, stopping, stopped.
+ Issue 235. (https://github.com/ansible-collections/amazon.aws/pull/237)
+ - aws_secret - add ``bypath`` functionality (https://github.com/ansible-collections/amazon.aws/pull/192).
+ - ec2_key - add AWSRetry decorator to automatically retry on common temporary
+ failures (https://github.com/ansible-collections/amazon.aws/pull/213).
+ - ec2_vol - Add support for gp3 volumes and support for modifying existing volumes
+ (https://github.com/ansible-collections/amazon.aws/issues/55).
+ - module_utils/elbv2 - add logic to compare_rules to suit Values list nested
+ within dicts unique to each field type. Fixes issue (https://github.com/ansible-collections/amazon.aws/issues/187)
+ - various AWS plugins and module_utils - Cleanup unused imports (https://github.com/ansible-collections/amazon.aws/pull/217).
+ fragments:
+ - 188-httprequestmethodconfig-keyerror.yaml
+ - 192-aws_secret-bypath-option.yaml
+ - 213-ec2_key-retries.yml
+ - 215-gp3-and-change-support-for-ec2_vol.yaml
+ - 217-duplicate-imports.yml
+ - 226_avoid_extra_Display_import.yaml
+ - 237_replace_inverse_ec2_aws_filter.yaml
+ - 241_ec2_vol-returns-an-up-to-date-tag-dict-of-the-volume.yaml
+ - 25-aws_ec2-hostname-options-concatenation.yaml
+ release_date: '2021-02-05'
diff --git a/collections-debian-merged/ansible_collections/amazon/aws/changelogs/config.yaml b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/config.yaml
new file mode 100644
index 00000000..df8a7220
--- /dev/null
+++ b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/config.yaml
@@ -0,0 +1,29 @@
+changelog_filename_template: ../CHANGELOG.rst
+changelog_filename_version_depth: 0
+changes_file: changelog.yaml
+changes_format: combined
+keep_fragments: false
+mention_ancestor: true
+new_plugins_after_name: removed_features
+notesdir: fragments
+prelude_section_name: release_summary
+prelude_section_title: Release Summary
+sections:
+- - major_changes
+ - Major Changes
+- - minor_changes
+ - Minor Changes
+- - breaking_changes
+ - Breaking Changes / Porting Guide
+- - deprecated_features
+ - Deprecated Features
+- - removed_features
+ - Removed Features (previously deprecated)
+- - security_fixes
+ - Security Fixes
+- - bugfixes
+ - Bugfixes
+- - known_issues
+ - Known Issues
+title: community.aws
+trivial_section_name: trivial
diff --git a/collections-debian-merged/ansible_collections/amazon/aws/changelogs/fragments/.keep b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/fragments/.keep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/collections-debian-merged/ansible_collections/amazon/aws/changelogs/fragments/.keep