diff --git a/.changes/1.35.46.json b/.changes/1.35.46.json new file mode 100644 index 0000000000..b005820845 --- /dev/null +++ b/.changes/1.35.46.json @@ -0,0 +1,37 @@ +[ + { + "category": "``bedrock-runtime``", + "description": "[``botocore``] Updating invoke regex to support imported models for converse API", + "type": "api-change" + }, + { + "category": "``imagebuilder``", + "description": "[``botocore``] Add macOS platform and instance placement options", + "type": "api-change" + }, + { + "category": "``m2``", + "description": "[``botocore``] Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Global clusters now expose the Endpoint attribute as one of its fields. It is a Read/Write endpoint for the global cluster which resolves to the Global Cluster writer instance.", + "type": "api-change" + }, + { + "category": "``repostspace``", + "description": "[``botocore``] Adds the BatchAddRole and BatchRemoveRole APIs.", + "type": "api-change" + }, + { + "category": "``timestream-query``", + "description": "[``botocore``] This release adds support for Query Insights, a feature that provides details of query execution, enabling users to identify areas for improvement to optimize their queries, resulting in improved query performance and lower query costs.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Fixed SelectObjectContent regression from `#3284 `__.", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ec1b407e5..f1f4334eb9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.35.46 +======= + +* api-change:``bedrock-runtime``: [``botocore``] Updating invoke regex to support imported models for converse API +* api-change:``imagebuilder``: [``botocore``] Add macOS platform and instance placement options +* api-change:``m2``: [``botocore``] Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints. +* api-change:``rds``: [``botocore``] Global clusters now expose the Endpoint attribute as one of its fields. It is a Read/Write endpoint for the global cluster which resolves to the Global Cluster writer instance. +* api-change:``repostspace``: [``botocore``] Adds the BatchAddRole and BatchRemoveRole APIs. +* api-change:``timestream-query``: [``botocore``] This release adds support for Query Insights, a feature that provides details of query execution, enabling users to identify areas for improvement to optimize their queries, resulting in improved query performance and lower query costs. +* bugfix:``s3``: [``botocore``] Fixed SelectObjectContent regression from `#3284 `__. + + 1.35.45 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 4136526fe2..2863990f3e 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.45' +__version__ = '1.35.46' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6680131547..9dc66633b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.45,<1.36.0 + botocore>=1.35.46,<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 d3b134261c..bd8254355c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.45,<1.36.0', + 'botocore>=1.35.46,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]