diff --git a/.changes/1.22.62.json b/.changes/1.22.62.json new file mode 100644 index 000000000000..92157fad1a1d --- /dev/null +++ b/.changes/1.22.62.json @@ -0,0 +1,42 @@ +[ + { + "category": "``lightsail``", + "description": "This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "This release adds support for new integrity checking capabilities in Amazon S3. You can choose from four supported checksum algorithms for data integrity checking on your upload and download requests. In addition, AWS SDK can automatically calculate a checksum as it streams data into S3", + "type": "api-change" + }, + { + "category": "``fms``", + "description": "AWS Firewall Manager now supports the configuration of AWS Network Firewall policies with either centralized or distributed deployment models. This release also adds support for custom endpoint configuration, where you can choose which Availability Zones to create firewall endpoints in.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3.", + "type": "api-change" + }, + { + "category": "``route53``", + "description": "SDK doc update for Route 53 to update some parameters with new information.", + "type": "api-change" + }, + { + "category": "``autoscaling``", + "description": "You can now hibernate instances in a warm pool to stop instances without deleting their RAM contents. You can now also return instances to the warm pool on scale in, instead of always terminating capacity that you will need later.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "Support automatic pagination when listing AWS Transfer Family resources.", + "type": "api-change" + }, + { + "category": "``databrew``", + "description": "This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d10278d8b207..7ef543b6fc5c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.22.62 +======= + +* api-change:``lightsail``: This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances. +* api-change:``s3``: This release adds support for new integrity checking capabilities in Amazon S3. You can choose from four supported checksum algorithms for data integrity checking on your upload and download requests. In addition, AWS SDK can automatically calculate a checksum as it streams data into S3 +* api-change:``fms``: AWS Firewall Manager now supports the configuration of AWS Network Firewall policies with either centralized or distributed deployment models. This release also adds support for custom endpoint configuration, where you can choose which Availability Zones to create firewall endpoints in. +* api-change:``s3control``: Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3. +* api-change:``route53``: SDK doc update for Route 53 to update some parameters with new information. +* api-change:``autoscaling``: You can now hibernate instances in a warm pool to stop instances without deleting their RAM contents. You can now also return instances to the warm pool on scale in, instead of always terminating capacity that you will need later. +* api-change:``transfer``: Support automatic pagination when listing AWS Transfer Family resources. +* api-change:``databrew``: This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type. + + 1.22.61 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index b28a0d730c32..3c768e87a496 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.22.61' +__version__ = '1.22.62' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 16d1b5b67873..9090e2e08826 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.22.' # The full version, including alpha/beta/rc tags. -release = '1.22.61' +release = '1.22.62' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 55a1a115810f..e526a7df8652 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.24.6 + botocore==1.24.7 docutils>=0.10,<0.16 s3transfer>=0.5.0,<0.6.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index fd5ff3757c99..4798b49cc751 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.24.6', + 'botocore==1.24.7', 'docutils>=0.10,<0.16', 's3transfer>=0.5.0,<0.6.0', 'PyYAML>=3.10,<5.5',