diff --git a/.changes/1.17.112.json b/.changes/1.17.112.json new file mode 100644 index 0000000000..c626fd7a1d --- /dev/null +++ b/.changes/1.17.112.json @@ -0,0 +1,32 @@ +[ + { + "category": "``dms``", + "description": "[``botocore``] Release of feature needed for ECA-Endpoint settings. This allows customer to delete a field in endpoint settings by using --exact-settings flag in modify-endpoint api. This also displays default values for certain required fields of endpoint settings in describe-endpoint-settings api.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add support for Event Driven Workflows", + "type": "api-change" + }, + { + "category": "``acm``", + "description": "[``botocore``] Added support for RSA 3072 SSL certificate import", + "type": "api-change" + }, + { + "category": "``healthlake``", + "description": "[``botocore``] General availability for Amazon HealthLake. StartFHIRImportJob and StartFHIRExportJob APIs now require AWS KMS parameter. For more information, see the Amazon HealthLake Documentation https://docs.aws.amazon.com/healthlake/index.html.", + "type": "api-change" + }, + { + "category": "``wellarchitected``", + "description": "[``botocore``] This update provides support for Well-Architected API users to mark answer choices as not applicable.", + "type": "api-change" + }, + { + "category": "``lightsail``", + "description": "[``botocore``] This release adds support for the Amazon Lightsail object storage service, which allows you to create buckets and store objects.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 31bad2546c..47e6f89eab 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.17.112 +======== + +* api-change:``dms``: [``botocore``] Release of feature needed for ECA-Endpoint settings. This allows customer to delete a field in endpoint settings by using --exact-settings flag in modify-endpoint api. This also displays default values for certain required fields of endpoint settings in describe-endpoint-settings api. +* api-change:``glue``: [``botocore``] Add support for Event Driven Workflows +* api-change:``acm``: [``botocore``] Added support for RSA 3072 SSL certificate import +* api-change:``healthlake``: [``botocore``] General availability for Amazon HealthLake. StartFHIRImportJob and StartFHIRExportJob APIs now require AWS KMS parameter. For more information, see the Amazon HealthLake Documentation https://docs.aws.amazon.com/healthlake/index.html. +* api-change:``wellarchitected``: [``botocore``] This update provides support for Well-Architected API users to mark answer choices as not applicable. +* api-change:``lightsail``: [``botocore``] This release adds support for the Amazon Lightsail object storage service, which allows you to create buckets and store objects. + + 1.17.111 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 31b04ffc48..df9e65e296 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.111' +__version__ = '1.17.112' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c06965ea25..3a902365e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.111,<1.21.0 + botocore>=1.20.112,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.4.0,<0.5.0 diff --git a/setup.py b/setup.py index bd9dbfa4d7..c24158d5ce 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.111,<1.21.0', + 'botocore>=1.20.112,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]