diff --git a/.changes/1.20.6.json b/.changes/1.20.6.json new file mode 100644 index 0000000000..5c40a7b748 --- /dev/null +++ b/.changes/1.20.6.json @@ -0,0 +1,42 @@ +[ + { + "category": "``migrationhubstrategy``", + "description": "[``botocore``] AWS SDK for Migration Hub Strategy Recommendations. It includes APIs to start the portfolio assessment, import portfolio data for assessment, and to retrieve recommendations. For more information, see the AWS Migration Hub documentation at https://docs.aws.amazon.com/migrationhub/index.html", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Adds a new VPC Subnet attribute \"EnableDns64.\" When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations.", + "type": "api-change" + }, + { + "category": "``wafv2``", + "description": "[``botocore``] Your options for logging web ACL traffic now include Amazon CloudWatch Logs log groups and Amazon S3 buckets.", + "type": "api-change" + }, + { + "category": "``dms``", + "description": "[``botocore``] Add Settings in JSON format for the source GCP MySQL endpoint", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager.", + "type": "api-change" + }, + { + "category": "``appstream``", + "description": "[``botocore``] This release includes support for images of AmazonLinux2 platform type.", + "type": "api-change" + }, + { + "category": "``eks``", + "description": "[``botocore``] Adding Tags support to Cluster Registrations.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "[``botocore``] AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 882c9175c1..48cf733b67 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.20.6 +====== + +* api-change:``migrationhubstrategy``: [``botocore``] AWS SDK for Migration Hub Strategy Recommendations. It includes APIs to start the portfolio assessment, import portfolio data for assessment, and to retrieve recommendations. For more information, see the AWS Migration Hub documentation at https://docs.aws.amazon.com/migrationhub/index.html +* api-change:``ec2``: [``botocore``] Adds a new VPC Subnet attribute "EnableDns64." When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations. +* api-change:``wafv2``: [``botocore``] Your options for logging web ACL traffic now include Amazon CloudWatch Logs log groups and Amazon S3 buckets. +* api-change:``dms``: [``botocore``] Add Settings in JSON format for the source GCP MySQL endpoint +* api-change:``ssm``: [``botocore``] Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager. +* api-change:``appstream``: [``botocore``] This release includes support for images of AmazonLinux2 platform type. +* api-change:``eks``: [``botocore``] Adding Tags support to Cluster Registrations. +* api-change:``transfer``: [``botocore``] AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda + + 1.20.5 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 3a894322f4..1d51e875de 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.20.5' +__version__ = '1.20.6' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index efcec6998e..6ec1d9cea5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.23.5,<1.24.0 + botocore>=1.23.6,<1.24.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 51eae83fe0..2eb7fa5079 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.23.5,<1.24.0', + 'botocore>=1.23.6,<1.24.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]