diff --git a/.changes/1.32.29.json b/.changes/1.32.29.json new file mode 100644 index 000000000000..25d336a208a6 --- /dev/null +++ b/.changes/1.32.29.json @@ -0,0 +1,17 @@ +[ + { + "category": "``connect``", + "description": "Update list and string length limits for predefined attributes.", + "type": "api-change" + }, + { + "category": "``inspector2``", + "description": "This release adds ECR container image scanning based on their lastRecordedPullTime.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-connect-47384.json b/.changes/next-release/api-change-connect-47384.json deleted file mode 100644 index 0f1f487d702f..000000000000 --- a/.changes/next-release/api-change-connect-47384.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "Update list and string length limits for predefined attributes." -} diff --git a/.changes/next-release/api-change-inspector2-33769.json b/.changes/next-release/api-change-inspector2-33769.json deleted file mode 100644 index 60b1d0de48a5..000000000000 --- a/.changes/next-release/api-change-inspector2-33769.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``inspector2``", - "description": "This release adds ECR container image scanning based on their lastRecordedPullTime." -} diff --git a/.changes/next-release/api-change-sagemaker-93582.json b/.changes/next-release/api-change-sagemaker-93582.json deleted file mode 100644 index 28617ec0d2e5..000000000000 --- a/.changes/next-release/api-change-sagemaker-93582.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e8099f494a97..090263a3ccea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.32.29 +======= + +* api-change:``connect``: Update list and string length limits for predefined attributes. +* api-change:``inspector2``: This release adds ECR container image scanning based on their lastRecordedPullTime. +* api-change:``sagemaker``: Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs. + + 1.32.28 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 3866ede8c6b9..65a1decb5e4f 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.28' +__version__ = '1.32.29' # # 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 88325931936a..6d54911cd840 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32.' # The full version, including alpha/beta/rc tags. -release = '1.32.28' +release = '1.32.29' # 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 a258fe754c1a..82c7a1d3370a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.28 + botocore==1.34.29 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 2ddc9d66b9cb..cc4c123fa35e 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.28', + 'botocore==1.34.29', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',