From dd39f9ef37e5f2cf04513ec639255b41e0f6b789 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 3 Dec 2024 05:32:33 +0000 Subject: [PATCH] Bumping version to 1.35.73 --- .changes/1.35.73.json | 17 +++++++++++++++++ .../api-change-bedrockruntime-22361.json | 5 ----- .../api-change-s3control-70121.json | 5 ----- .../api-change-socialmessaging-9994.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 8 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/1.35.73.json delete mode 100644 .changes/next-release/api-change-bedrockruntime-22361.json delete mode 100644 .changes/next-release/api-change-s3control-70121.json delete mode 100644 .changes/next-release/api-change-socialmessaging-9994.json diff --git a/.changes/1.35.73.json b/.changes/1.35.73.json new file mode 100644 index 0000000000..969a461241 --- /dev/null +++ b/.changes/1.35.73.json @@ -0,0 +1,17 @@ +[ + { + "category": "``bedrock-runtime``", + "description": "[``botocore``] Add an API parameter that allows customers to set performance configuration for invoking a model.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests", + "type": "api-change" + }, + { + "category": "``socialmessaging``", + "description": "[``botocore``] Added support for passing role arn corresponding to the supported event destination", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-bedrockruntime-22361.json b/.changes/next-release/api-change-bedrockruntime-22361.json deleted file mode 100644 index 29e2deb760..0000000000 --- a/.changes/next-release/api-change-bedrockruntime-22361.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bedrock-runtime``", - "description": "[``botocore``] Add an API parameter that allows customers to set performance configuration for invoking a model." -} diff --git a/.changes/next-release/api-change-s3control-70121.json b/.changes/next-release/api-change-s3control-70121.json deleted file mode 100644 index 8df9a5f8a6..0000000000 --- a/.changes/next-release/api-change-s3control-70121.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3control``", - "description": "[``botocore``] It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests" -} diff --git a/.changes/next-release/api-change-socialmessaging-9994.json b/.changes/next-release/api-change-socialmessaging-9994.json deleted file mode 100644 index 32e665ad4c..0000000000 --- a/.changes/next-release/api-change-socialmessaging-9994.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``socialmessaging``", - "description": "[``botocore``] Added support for passing role arn corresponding to the supported event destination" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ec40c58963..a3008c8175 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.35.73 +======= + +* api-change:``bedrock-runtime``: [``botocore``] Add an API parameter that allows customers to set performance configuration for invoking a model. +* api-change:``s3control``: [``botocore``] It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests +* api-change:``socialmessaging``: [``botocore``] Added support for passing role arn corresponding to the supported event destination + + 1.35.72 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 46c910ffb7..118476f1df 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.72' +__version__ = '1.35.73' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 93ae1c7e26..cbd7c2f757 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.72,<1.36.0 + botocore>=1.35.73,<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 5f5a67f486..5d8598d3f0 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.72,<1.36.0', + 'botocore>=1.35.73,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]