diff --git a/.changes/1.35.46.json b/.changes/1.35.46.json new file mode 100644 index 0000000000..6ec9cec464 --- /dev/null +++ b/.changes/1.35.46.json @@ -0,0 +1,37 @@ +[ + { + "category": "``bedrock-runtime``", + "description": "Updating invoke regex to support imported models for converse API", + "type": "api-change" + }, + { + "category": "``imagebuilder``", + "description": "Add macOS platform and instance placement options", + "type": "api-change" + }, + { + "category": "``m2``", + "description": "Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "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": "Adds the BatchAddRole and BatchRemoveRole APIs.", + "type": "api-change" + }, + { + "category": "``timestream-query``", + "description": "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": "Fixed SelectObjectContent regression from `#3284 `__.", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-bedrockruntime-62637.json b/.changes/next-release/api-change-bedrockruntime-62637.json deleted file mode 100644 index 66972fe502..0000000000 --- a/.changes/next-release/api-change-bedrockruntime-62637.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bedrock-runtime``", - "description": "Updating invoke regex to support imported models for converse API" -} diff --git a/.changes/next-release/api-change-imagebuilder-30586.json b/.changes/next-release/api-change-imagebuilder-30586.json deleted file mode 100644 index 780a187adf..0000000000 --- a/.changes/next-release/api-change-imagebuilder-30586.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``imagebuilder``", - "description": "Add macOS platform and instance placement options" -} diff --git a/.changes/next-release/api-change-m2-78974.json b/.changes/next-release/api-change-m2-78974.json deleted file mode 100644 index fe0f54084c..0000000000 --- a/.changes/next-release/api-change-m2-78974.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``m2``", - "description": "Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints." -} diff --git a/.changes/next-release/api-change-rds-53641.json b/.changes/next-release/api-change-rds-53641.json deleted file mode 100644 index 88bdb0ee58..0000000000 --- a/.changes/next-release/api-change-rds-53641.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rds``", - "description": "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." -} diff --git a/.changes/next-release/api-change-repostspace-10021.json b/.changes/next-release/api-change-repostspace-10021.json deleted file mode 100644 index 6ab6423e8d..0000000000 --- a/.changes/next-release/api-change-repostspace-10021.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``repostspace``", - "description": "Adds the BatchAddRole and BatchRemoveRole APIs." -} diff --git a/.changes/next-release/api-change-timestreamquery-34136.json b/.changes/next-release/api-change-timestreamquery-34136.json deleted file mode 100644 index d5c76913ad..0000000000 --- a/.changes/next-release/api-change-timestreamquery-34136.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``timestream-query``", - "description": "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." -} diff --git a/.changes/next-release/bugfix-s3-44124.json b/.changes/next-release/bugfix-s3-44124.json deleted file mode 100644 index dfe2dcd1a4..0000000000 --- a/.changes/next-release/bugfix-s3-44124.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "``s3``", - "description": "Fixed SelectObjectContent regression from `#3284 `__." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 93589871c2..7f9bbcb8fb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.35.46 +======= + +* api-change:``bedrock-runtime``: Updating invoke regex to support imported models for converse API +* api-change:``imagebuilder``: Add macOS platform and instance placement options +* api-change:``m2``: Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints. +* api-change:``rds``: 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``: Adds the BatchAddRole and BatchRemoveRole APIs. +* api-change:``timestream-query``: 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``: Fixed SelectObjectContent regression from `#3284 `__. + + 1.35.45 ======= diff --git a/botocore/__init__.py b/botocore/__init__.py index 276d102ff5..3e3cc37fc1 100644 --- a/botocore/__init__.py +++ b/botocore/__init__.py @@ -16,7 +16,7 @@ import os import re -__version__ = '1.35.45' +__version__ = '1.35.46' class NullHandler(logging.Handler): diff --git a/docs/source/conf.py b/docs/source/conf.py index be9f4d02f6..9fe210b7cb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,7 +59,7 @@ # The short X.Y version. version = '1.35.' # The full version, including alpha/beta/rc tags. -release = '1.35.45' +release = '1.35.46' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.