diff --git a/.changes/1.35.32.json b/.changes/1.35.32.json new file mode 100644 index 0000000000..453309bb84 --- /dev/null +++ b/.changes/1.35.32.json @@ -0,0 +1,47 @@ +[ + { + "category": "``appstream``", + "description": "[``botocore``] Added support for Automatic Time Zone Redirection on Amazon AppStream 2.0", + "type": "api-change" + }, + { + "category": "``b2bi``", + "description": "[``botocore``] Added and updated APIs to support outbound EDI transformations", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] Added raw model response and usage metrics to PreProcessing and PostProcessing Trace", + "type": "api-change" + }, + { + "category": "``bedrock-runtime``", + "description": "[``botocore``] Added new fields to Amazon Bedrock Guardrails trace", + "type": "api-change" + }, + { + "category": "``iotdeviceadvisor``", + "description": "[``botocore``] Add clientToken attribute and implement idempotency for CreateSuiteDefinition.", + "type": "api-change" + }, + { + "category": "``ivs-realtime``", + "description": "[``botocore``] Adds new Stage Health EventErrorCodes applicable to RTMP(S) broadcasts. Bug Fix: Enforces that EncoderConfiguration Video height and width must be even-number values.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] This release introduces a header representing the minimum object size limit for Lifecycle transitions.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] releasing builtinlcc to public", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] WSP is being rebranded to become DCV.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1a4ec8f77a..f8feab9711 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.35.32 +======= + +* api-change:``appstream``: [``botocore``] Added support for Automatic Time Zone Redirection on Amazon AppStream 2.0 +* api-change:``b2bi``: [``botocore``] Added and updated APIs to support outbound EDI transformations +* api-change:``bedrock-agent-runtime``: [``botocore``] Added raw model response and usage metrics to PreProcessing and PostProcessing Trace +* api-change:``bedrock-runtime``: [``botocore``] Added new fields to Amazon Bedrock Guardrails trace +* api-change:``iotdeviceadvisor``: [``botocore``] Add clientToken attribute and implement idempotency for CreateSuiteDefinition. +* api-change:``ivs-realtime``: [``botocore``] Adds new Stage Health EventErrorCodes applicable to RTMP(S) broadcasts. Bug Fix: Enforces that EncoderConfiguration Video height and width must be even-number values. +* api-change:``s3``: [``botocore``] This release introduces a header representing the minimum object size limit for Lifecycle transitions. +* api-change:``sagemaker``: [``botocore``] releasing builtinlcc to public +* api-change:``workspaces``: [``botocore``] WSP is being rebranded to become DCV. + + 1.35.31 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index a828efebed..b16d0ff529 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.31' +__version__ = '1.35.32' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index b1f0e64cae..a39eae1957 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.31,<1.36.0 + botocore>=1.35.32,<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 b91cfdef7d..72af09b17d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.31,<1.36.0', + 'botocore>=1.35.32,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]