diff --git a/.changes/1.34.29.json b/.changes/1.34.29.json new file mode 100644 index 0000000000..0ea36f9985 --- /dev/null +++ b/.changes/1.34.29.json @@ -0,0 +1,17 @@ +[ + { + "category": "``connect``", + "description": "[``botocore``] Update list and string length limits for predefined attributes.", + "type": "api-change" + }, + { + "category": "``inspector2``", + "description": "[``botocore``] This release adds ECR container image scanning based on their lastRecordedPullTime.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] 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/CHANGELOG.rst b/CHANGELOG.rst index fee2e09b57..a29f7ead3b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.29 +======= + +* api-change:``connect``: [``botocore``] Update list and string length limits for predefined attributes. +* api-change:``inspector2``: [``botocore``] This release adds ECR container image scanning based on their lastRecordedPullTime. +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs. + + 1.34.28 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 27a150d200..030b06476e 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.28' +__version__ = '1.34.29' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 1bc0352b4e..a6154994dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.28,<1.35.0 + botocore>=1.34.29,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 4ac0b26602..a6746d5a08 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.28,<1.35.0', + 'botocore>=1.34.29,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]