diff --git a/.changes/1.17.103.json b/.changes/1.17.103.json new file mode 100644 index 0000000000..9374d4bd98 --- /dev/null +++ b/.changes/1.17.103.json @@ -0,0 +1,32 @@ +[ + { + "category": "``autoscaling``", + "description": "[``botocore``] Amazon EC2 Auto Scaling infrastructure improvements and optimizations.", + "type": "api-change" + }, + { + "category": "``kendra``", + "description": "[``botocore``] Amazon Kendra Enterprise Edition now offered in smaller more granular units to enable customers with smaller workloads. Virtual Storage Capacity units now offer scaling in increments of 100,000 documents (up to 30GB) per unit and Virtual Query Units offer scaling increments of 8,000 queries per day.", + "type": "api-change" + }, + { + "category": "``mediapackage-vod``", + "description": "[``botocore``] Add support for Widevine DRM on CMAF packaging configurations. Both Widevine and FairPlay DRMs can now be used simultaneously, with CBCS encryption.", + "type": "api-change" + }, + { + "category": "``ssm-contacts``", + "description": "[``botocore``] Fixes the tag key length range to 128 chars, tag value length to 256 chars; Adds support for UTF-8 chars for contact and channel names, Allows users to unset name in UpdateContact API; Adds throttling exception to StopEngagement API, validation exception to APIs UntagResource, ListTagsForResource", + "type": "api-change" + }, + { + "category": "``databrew``", + "description": "[``botocore``] Adds support for the output of job results to the AWS Glue Data Catalog.", + "type": "api-change" + }, + { + "category": "``servicediscovery``", + "description": "[``botocore``] AWS Cloud Map now allows configuring the TTL of the SOA record for a hosted zone to control the negative caching for new services.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a12060954d..2ab42a4594 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.17.103 +======== + +* api-change:``autoscaling``: [``botocore``] Amazon EC2 Auto Scaling infrastructure improvements and optimizations. +* api-change:``kendra``: [``botocore``] Amazon Kendra Enterprise Edition now offered in smaller more granular units to enable customers with smaller workloads. Virtual Storage Capacity units now offer scaling in increments of 100,000 documents (up to 30GB) per unit and Virtual Query Units offer scaling increments of 8,000 queries per day. +* api-change:``mediapackage-vod``: [``botocore``] Add support for Widevine DRM on CMAF packaging configurations. Both Widevine and FairPlay DRMs can now be used simultaneously, with CBCS encryption. +* api-change:``ssm-contacts``: [``botocore``] Fixes the tag key length range to 128 chars, tag value length to 256 chars; Adds support for UTF-8 chars for contact and channel names, Allows users to unset name in UpdateContact API; Adds throttling exception to StopEngagement API, validation exception to APIs UntagResource, ListTagsForResource +* api-change:``databrew``: [``botocore``] Adds support for the output of job results to the AWS Glue Data Catalog. +* api-change:``servicediscovery``: [``botocore``] AWS Cloud Map now allows configuring the TTL of the SOA record for a hosted zone to control the negative caching for new services. + + 1.17.102 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 8620dd2735..8167ab2eb2 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.102' +__version__ = '1.17.103' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 87d3eabc3f..f901a48edd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.102,<1.21.0 + botocore>=1.20.103,<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 8f9e6acbc5..e2b27c01cd 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.102,<1.21.0', + 'botocore>=1.20.103,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]