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/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', ]