diff --git a/.changes/1.35.24.json b/.changes/1.35.24.json new file mode 100644 index 0000000000..dd77eee11a --- /dev/null +++ b/.changes/1.35.24.json @@ -0,0 +1,27 @@ +[ + { + "category": "``dynamodb``", + "description": "[``botocore``] Generate account endpoint for DynamoDB requests when the account ID is available", + "type": "api-change" + }, + { + "category": "``neptune``", + "description": "[``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Amazon SageMaker now supports using manifest files to specify the location of uncompressed model artifacts within Model Packages", + "type": "api-change" + }, + { + "category": "``sagemaker-metrics``", + "description": "[``botocore``] This release introduces support for the SageMaker Metrics BatchGetMetrics API.", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] Releasing new ErrorCodes for SysPrep failures during ImageImport and CreateImage process", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1bccb87f1e..e31344506b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.35.24 +======= + +* api-change:``dynamodb``: [``botocore``] Generate account endpoint for DynamoDB requests when the account ID is available +* api-change:``neptune``: [``botocore``] Add v2 smoke tests and smithy smokeTests trait for SDK testing. +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker now supports using manifest files to specify the location of uncompressed model artifacts within Model Packages +* api-change:``sagemaker-metrics``: [``botocore``] This release introduces support for the SageMaker Metrics BatchGetMetrics API. +* api-change:``workspaces``: [``botocore``] Releasing new ErrorCodes for SysPrep failures during ImageImport and CreateImage process + + 1.35.23 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index d4188e9d6e..e25cce39dd 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.23' +__version__ = '1.35.24' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index df89fe6109..7a5e731779 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.23,<1.36.0 + botocore>=1.35.24,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 4ac3d628ad..613192bd42 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.23,<1.36.0', + 'botocore>=1.35.24,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]