From 05ccf0fa498b9ad92989461f77f287da620dca53 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 9 May 2023 18:07:25 +0000 Subject: [PATCH] Bumping version to 1.27.131 --- .changes/1.27.131.json | 17 +++++++++++++++++ ...api-change-applicationautoscaling-17783.json | 5 ----- .../next-release/api-change-glue-23389.json | 5 ----- .../next-release/api-change-sagemaker-9341.json | 5 ----- CHANGELOG.rst | 8 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 9 files changed, 29 insertions(+), 19 deletions(-) create mode 100644 .changes/1.27.131.json delete mode 100644 .changes/next-release/api-change-applicationautoscaling-17783.json delete mode 100644 .changes/next-release/api-change-glue-23389.json delete mode 100644 .changes/next-release/api-change-sagemaker-9341.json diff --git a/.changes/1.27.131.json b/.changes/1.27.131.json new file mode 100644 index 000000000000..46f8a5112600 --- /dev/null +++ b/.changes/1.27.131.json @@ -0,0 +1,17 @@ +[ + { + "category": "``application-autoscaling``", + "description": "With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "This release adds AmazonRedshift Source and Target nodes in addition to DynamicTransform OutputSchemas", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-applicationautoscaling-17783.json b/.changes/next-release/api-change-applicationautoscaling-17783.json deleted file mode 100644 index 661766ff0987..000000000000 --- a/.changes/next-release/api-change-applicationautoscaling-17783.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``application-autoscaling``", - "description": "With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints." -} diff --git a/.changes/next-release/api-change-glue-23389.json b/.changes/next-release/api-change-glue-23389.json deleted file mode 100644 index 3f7972013aec..000000000000 --- a/.changes/next-release/api-change-glue-23389.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "This release adds AmazonRedshift Source and Target nodes in addition to DynamicTransform OutputSchemas" -} diff --git a/.changes/next-release/api-change-sagemaker-9341.json b/.changes/next-release/api-change-sagemaker-9341.json deleted file mode 100644 index 52198064fd24..000000000000 --- a/.changes/next-release/api-change-sagemaker-9341.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3a2cd9167a7a..7e3f3355c37b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.27.131 +======== + +* api-change:``application-autoscaling``: With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints. +* api-change:``glue``: This release adds AmazonRedshift Source and Target nodes in addition to DynamicTransform OutputSchemas +* api-change:``sagemaker``: This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints. + + 1.27.130 ======== diff --git a/awscli/__init__.py b/awscli/__init__.py index 819607770e30..9ddd77f7c7b8 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.130' +__version__ = '1.27.131' # # 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 89b2387c4288..aedd2043aac1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.27.1' # The full version, including alpha/beta/rc tags. -release = '1.27.130' +release = '1.27.131' # 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 c6400919c65e..2daca1919875 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.130 + botocore==1.29.131 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index 7866dddd3402..792ac85e77cd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.130', + 'botocore==1.29.131', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',