diff --git a/.changes/1.17.89.json b/.changes/1.17.89.json new file mode 100644 index 0000000000..5af60032cc --- /dev/null +++ b/.changes/1.17.89.json @@ -0,0 +1,22 @@ +[ + { + "category": "``sagemaker``", + "description": "[``botocore``] AWS SageMaker - Releasing new APIs related to Callback steps in model building pipelines. Adds experiment integration to model building pipelines.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add SampleSize variable to S3Target to enable s3-sampling feature through API.", + "type": "api-change" + }, + { + "category": "``personalize``", + "description": "[``botocore``] Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs", + "type": "api-change" + }, + { + "category": "``eks``", + "description": "[``botocore``] Added updateConfig option that allows customers to control upgrade velocity in Managed Node Group.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-eks-51580.json b/.changes/next-release/api-change-eks-51580.json deleted file mode 100644 index 698e2eddfd..0000000000 --- a/.changes/next-release/api-change-eks-51580.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``eks``", - "type": "api-change", - "description": "[``botocore``] Added updateConfig option that allows customers to control upgrade velocity in Managed Node Group." -} diff --git a/.changes/next-release/api-change-glue-9730.json b/.changes/next-release/api-change-glue-9730.json deleted file mode 100644 index 0b6442ac70..0000000000 --- a/.changes/next-release/api-change-glue-9730.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``glue``", - "type": "api-change", - "description": "[``botocore``] Add SampleSize variable to S3Target to enable s3-sampling feature through API." -} diff --git a/.changes/next-release/api-change-personalize-3261.json b/.changes/next-release/api-change-personalize-3261.json deleted file mode 100644 index 655bdb05e0..0000000000 --- a/.changes/next-release/api-change-personalize-3261.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``personalize``", - "type": "api-change", - "description": "[``botocore``] Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs" -} diff --git a/.changes/next-release/api-change-sagemaker-43543.json b/.changes/next-release/api-change-sagemaker-43543.json deleted file mode 100644 index 342500a231..0000000000 --- a/.changes/next-release/api-change-sagemaker-43543.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``sagemaker``", - "type": "api-change", - "description": "[``botocore``] AWS SageMaker - Releasing new APIs related to Callback steps in model building pipelines. Adds experiment integration to model building pipelines." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0553981ccc..6760172e9f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.17.89 +======= + +* api-change:``sagemaker``: [``botocore``] AWS SageMaker - Releasing new APIs related to Callback steps in model building pipelines. Adds experiment integration to model building pipelines. +* api-change:``glue``: [``botocore``] Add SampleSize variable to S3Target to enable s3-sampling feature through API. +* api-change:``personalize``: [``botocore``] Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs +* api-change:``eks``: [``botocore``] Added updateConfig option that allows customers to control upgrade velocity in Managed Node Group. + + 1.17.88 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index f16a89cac0..fdfa8d01a9 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.88' +__version__ = '1.17.89' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f110b3588f..9b58c5a1f1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.88,<1.21.0 + botocore>=1.20.89,<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 d1baa45b51..04ab8e5d96 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.88,<1.21.0', + 'botocore>=1.20.89,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]