diff --git a/.changes/1.34.98.json b/.changes/1.34.98.json new file mode 100644 index 0000000000..480920772f --- /dev/null +++ b/.changes/1.34.98.json @@ -0,0 +1,37 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] This release adds support for using Provisioned Throughput with Bedrock Agents.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases.", + "type": "api-change" + }, + { + "category": "``connectcases``", + "description": "[``botocore``] This feature supports the release of Files related items", + "type": "api-change" + }, + { + "category": "``datasync``", + "description": "[``botocore``] Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations.", + "type": "api-change" + }, + { + "category": "``inspector2``", + "description": "[``botocore``] This release adds CSV format to GetCisScanReport for Inspector v2", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs", + "type": "api-change" + }, + { + "category": "``sesv2``", + "description": "[``botocore``] Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc48c9056c..f019af9b81 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.34.98 +======= + +* api-change:``bedrock-agent``: [``botocore``] This release adds support for using Provisioned Throughput with Bedrock Agents. +* api-change:``connect``: [``botocore``] This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases. +* api-change:``connectcases``: [``botocore``] This feature supports the release of Files related items +* api-change:``datasync``: [``botocore``] Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations. +* api-change:``inspector2``: [``botocore``] This release adds CSV format to GetCisScanReport for Inspector v2 +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs +* api-change:``sesv2``: [``botocore``] Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2. + + 1.34.97 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 5c3a14f087..c3fc17d42f 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.97' +__version__ = '1.34.98' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 51bad3e6a2..7994bfa15e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.97,<1.35.0 + botocore>=1.34.98,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 210126d328..18b96dbc5a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.97,<1.35.0', + 'botocore>=1.34.98,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]