diff --git a/.changes/1.36.7.json b/.changes/1.36.7.json new file mode 100644 index 0000000000..71db815d12 --- /dev/null +++ b/.changes/1.36.7.json @@ -0,0 +1,27 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Add support for the prompt caching feature for Bedrock Prompt Management", + "type": "api-change" + }, + { + "category": "``iot``", + "description": "[``botocore``] Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs.", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "[``botocore``] This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations", + "type": "api-change" + }, + { + "category": "Signing", + "description": "[``botocore``] No longer sign transfer-encoding header for SigV4", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5fafaa1238..3417052e15 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.36.7 +====== + +* api-change:``bedrock-agent``: [``botocore``] Add support for the prompt caching feature for Bedrock Prompt Management +* api-change:``iot``: [``botocore``] Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs. +* api-change:``mediaconvert``: [``botocore``] This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes. +* api-change:``s3control``: [``botocore``] Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations +* bugfix:Signing: [``botocore``] No longer sign transfer-encoding header for SigV4 + + 1.36.6 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index cec2ad32ed..dd7c84d998 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.36.6' +__version__ = '1.36.7' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 34edaa4efb..a09dcdec4e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.36.6,<1.37.0 + botocore>=1.36.7,<1.37.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.11.0,<0.12.0 diff --git a/setup.py b/setup.py index 9281e447cb..70c67dd59c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.36.6,<1.37.0', + 'botocore>=1.36.7,<1.37.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.11.0,<0.12.0', ]