diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fa1118004f5..7fc5dee3fd1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ amazon.aws Release Notes .. contents:: Topics +v5.0.2 +====== + +Bugfixes +-------- + +- ec2_metadata_facts - fixed ``AttributeError`` (https://github.com/ansible-collections/amazon.aws/issues/1134). + +v5.0.1 +====== + +Bugfixes +-------- + +- ec2_vpc_net_info - fix KeyError (https://github.com/ansible-collections/amazon.aws/pull/1109). +- ec2_vpc_net_info - remove hardcoded ``ClassicLinkEnabled`` parameter when request for ``ClassicLinkDnsSupported`` failed (https://github.com/ansible-collections/amazon.aws/pull/1109). +- s3_object - be more defensive when checking the results of ``s3.get_bucket_ownership_controls`` (https://github.com/ansible-collections/amazon.aws/issues/1115). + v5.0.0 ====== @@ -134,6 +152,28 @@ New Modules - cloudwatch_metric_alarm_info - Gather information about the alarms for the specified metric - s3_object_info - Gather information about objects in S3 +v4.3.0 +====== + +Release Summary +--------------- + +The amazon.aws 4.3.0 release includes a number of minor bug fixes and improvements. +Following the release of amazon.aws 5.0.0, backports to the 4.x series will be limited to +security issues and bugfixes. + + +Minor Changes +------------- + +- ec2_instance - expanded the use of the automatic retries to ``InsuffienctInstanceCapacity`` (https://github.com/ansible-collections/amazon.aws/issues/1038). + +Bugfixes +-------- + +- ec2_metadata_facts - fix ``'NoneType' object is not callable`` exception when using Ansible 2.13+ (https://github.com/ansible-collections/amazon.aws/issues/942). +- module_utils/cloud - Fix ``ValueError: ansible_collections.amazon.aws.plugins.module_utils.core.__spec__ is None`` error on Ansible 2.9 (https://github.com/ansible-collections/amazon.aws/issues/1083). + v4.2.0 ====== @@ -250,6 +290,25 @@ Bugfixes - ec2_vpc_net - fix a bug where the module would get stuck if DNS options were updated in check mode (https://github.com/ansible/ansible/issues/62677). - elb_classic_lb - modify the return value of _format_listeners method to resolve a failure creating https listeners (https://github.com/ansible-collections/amazon.aws/pull/860). +v3.5.0 +====== + +Release Summary +--------------- + +Following the release of amazon.aws 5.0.0, 3.5.0 is a bugfix release and the final planned release for the 3.x series. + + +Minor Changes +------------- + +- ec2_security_group - set type as ``list`` for rules->group_name as it can accept both ``str`` and ``list`` (https://github.com/ansible-collections/amazon.aws/pull/971). + +Bugfixes +-------- + +- ec2_metadata_facts - fix ``'NoneType' object is not callable`` exception when using Ansible 2.13+ (https://github.com/ansible-collections/amazon.aws/issues/942). + v3.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2dab28b045f..b9f1853a260 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -836,6 +836,24 @@ releases: - 914-elb_classic_lb-security_group_names.yml - 927-ec2_instance-retries.yml release_date: '2022-08-02' + 3.5.0: + changes: + bugfixes: + - ec2_metadata_facts - fix ``'NoneType' object is not callable`` exception when + using Ansible 2.13+ (https://github.com/ansible-collections/amazon.aws/issues/942). + minor_changes: + - ec2_security_group - set type as ``list`` for rules->group_name as it can + accept both ``str`` and ``list`` (https://github.com/ansible-collections/amazon.aws/pull/971). + release_summary: 'Following the release of amazon.aws 5.0.0, 3.5.0 is a bugfix + release and the final planned release for the 3.x series. + + ' + fragments: + - 638-ec2_security_group_group_name_datatype.yml + - 943-ec2_metadata_facts-fix-NoneType-callable.yml + - RELEASE-3.5.0.yml + - unit-tests_test_rds_py37_only.yaml + release_date: '2022-10-06' 4.0.0: changes: breaking_changes: @@ -1024,6 +1042,33 @@ releases: - 951-cloudretry.yml - 965-linting.yml release_date: '2022-09-14' + 4.3.0: + changes: + bugfixes: + - ec2_metadata_facts - fix ``'NoneType' object is not callable`` exception when + using Ansible 2.13+ (https://github.com/ansible-collections/amazon.aws/issues/942). + - 'module_utils/cloud - Fix ``ValueError: ansible_collections.amazon.aws.plugins.module_utils.core.__spec__ + is None`` error on Ansible 2.9 (https://github.com/ansible-collections/amazon.aws/issues/1083).' + minor_changes: + - ec2_instance - expanded the use of the automatic retries to ``InsuffienctInstanceCapacity`` + (https://github.com/ansible-collections/amazon.aws/issues/1038). + release_summary: 'The amazon.aws 4.3.0 release includes a number of minor bug + fixes and improvements. + + Following the release of amazon.aws 5.0.0, backports to the 4.x series will + be limited to + + security issues and bugfixes. + + ' + fragments: + - 1038-ec2-insufficient-capacity.yml + - 1083-__spec__-is-None.yml + - 943-ec2_metadata_facts-fix-NoneType-callable.yml + - RELEASE-4.3.0.yml + - tests-cloud.yml + - unit-tests_test_rds_py37_only.yaml + release_date: '2022-10-06' 5.0.0: changes: breaking_changes: @@ -1342,3 +1387,22 @@ releases: name: s3_object_info namespace: '' release_date: '2022-10-04' + 5.0.1: + changes: + bugfixes: + - ec2_vpc_net_info - fix KeyError (https://github.com/ansible-collections/amazon.aws/pull/1109). + - ec2_vpc_net_info - remove hardcoded ``ClassicLinkEnabled`` parameter when + request for ``ClassicLinkDnsSupported`` failed (https://github.com/ansible-collections/amazon.aws/pull/1109). + - s3_object - be more defensive when checking the results of ``s3.get_bucket_ownership_controls`` + (https://github.com/ansible-collections/amazon.aws/issues/1115). + fragments: + - 1109-ec2_vpc_net_info_keyerror.yml + - 1115-s3_object-scaleway.yml + release_date: '2022-10-06' + 5.0.2: + changes: + bugfixes: + - ec2_metadata_facts - fixed ``AttributeError`` (https://github.com/ansible-collections/amazon.aws/issues/1134). + fragments: + - 1134-ec2_metadata_facts-AttributeError.yml + release_date: '2022-10-10' diff --git a/changelogs/fragments/1109-ec2_vpc_net_info_keyerror.yml b/changelogs/fragments/1109-ec2_vpc_net_info_keyerror.yml deleted file mode 100644 index 7c7303fa5bb..00000000000 --- a/changelogs/fragments/1109-ec2_vpc_net_info_keyerror.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - ec2_vpc_net_info - fix KeyError (https://github.com/ansible-collections/amazon.aws/pull/1109). - - ec2_vpc_net_info - remove hardcoded ``ClassicLinkEnabled`` parameter when request for ``ClassicLinkDnsSupported`` failed (https://github.com/ansible-collections/amazon.aws/pull/1109). \ No newline at end of file diff --git a/changelogs/fragments/1115-s3_object-scaleway.yml b/changelogs/fragments/1115-s3_object-scaleway.yml deleted file mode 100644 index da51448137e..00000000000 --- a/changelogs/fragments/1115-s3_object-scaleway.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- s3_object - be more defensive when checking the results of ``s3.get_bucket_ownership_controls`` (https://github.com/ansible-collections/amazon.aws/issues/1115). diff --git a/changelogs/fragments/1134-ec2_metadata_facts-AttributeError.yml b/changelogs/fragments/1134-ec2_metadata_facts-AttributeError.yml deleted file mode 100644 index 5a836fa7407..00000000000 --- a/changelogs/fragments/1134-ec2_metadata_facts-AttributeError.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- ec2_metadata_facts - fixed ``AttributeError`` (https://github.com/ansible-collections/amazon.aws/issues/1134).