diff --git a/.changes/1.34.6.json b/.changes/1.34.6.json new file mode 100644 index 0000000000..4f6bd974d2 --- /dev/null +++ b/.changes/1.34.6.json @@ -0,0 +1,57 @@ +[ + { + "category": "AWSCRT", + "description": "[``botocore``] Update awscrt version to 0.19.19", + "type": "enhancement" + }, + { + "category": "``amp``", + "description": "[``botocore``] This release updates Amazon Managed Service for Prometheus APIs to support customer managed KMS keys.", + "type": "api-change" + }, + { + "category": "``appintegrations``", + "description": "[``botocore``] The Amazon AppIntegrations service adds DeleteApplication API for deleting applications, and updates APIs to support third party applications reacting to workspace events and make data requests to Amazon Connect for agent and contact events.", + "type": "api-change" + }, + { + "category": "``bedrock-agent``", + "description": "[``botocore``] This release introduces Amazon Aurora as a vector store on Knowledge Bases for Amazon Bedrock", + "type": "api-change" + }, + { + "category": "``codecommit``", + "description": "[``botocore``] AWS CodeCommit now supports customer managed keys from AWS Key Management Service. UpdateRepositoryEncryptionKey is added for updating the key configuration. CreateRepository, GetRepository, BatchGetRepositories are updated with new input or output parameters.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Adds APIs to manage User Proficiencies and Predefined Attributes. Enhances StartOutboundVoiceContact API input. Introduces SearchContacts API. Enhances DescribeContact API. Adds an API to update Routing Attributes in QueuePriority and QueueTimeAdjustmentSeconds.", + "type": "api-change" + }, + { + "category": "``medialive``", + "description": "[``botocore``] MediaLive now supports the ability to configure the audio that an AWS Elemental Link UHD device produces, when the device is configured as the source for a flow in AWS Elemental MediaConnect.", + "type": "api-change" + }, + { + "category": "``neptune-graph``", + "description": "[``botocore``] Adds Waiters for successful creation and deletion of Graph, Graph Snapshot, Import Task and Private Endpoints for Neptune Analytics", + "type": "api-change" + }, + { + "category": "``rds-data``", + "description": "[``botocore``] This release adds support for using RDS Data API with Aurora PostgreSQL Serverless v2 and provisioned DB clusters.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] This release adds support for using RDS Data API with Aurora PostgreSQL Serverless v2 and provisioned DB clusters.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Amazon SageMaker Training now provides model training container access for debugging purposes. Amazon SageMaker Search now provides the ability to use visibility conditions to limit resource access to a single domain or multiple domains.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a16c34ac1e..7e03875b92 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,22 @@ CHANGELOG ========= +1.34.6 +====== + +* enhancement:AWSCRT: [``botocore``] Update awscrt version to 0.19.19 +* api-change:``amp``: [``botocore``] This release updates Amazon Managed Service for Prometheus APIs to support customer managed KMS keys. +* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service adds DeleteApplication API for deleting applications, and updates APIs to support third party applications reacting to workspace events and make data requests to Amazon Connect for agent and contact events. +* api-change:``bedrock-agent``: [``botocore``] This release introduces Amazon Aurora as a vector store on Knowledge Bases for Amazon Bedrock +* api-change:``codecommit``: [``botocore``] AWS CodeCommit now supports customer managed keys from AWS Key Management Service. UpdateRepositoryEncryptionKey is added for updating the key configuration. CreateRepository, GetRepository, BatchGetRepositories are updated with new input or output parameters. +* api-change:``connect``: [``botocore``] Adds APIs to manage User Proficiencies and Predefined Attributes. Enhances StartOutboundVoiceContact API input. Introduces SearchContacts API. Enhances DescribeContact API. Adds an API to update Routing Attributes in QueuePriority and QueueTimeAdjustmentSeconds. +* api-change:``medialive``: [``botocore``] MediaLive now supports the ability to configure the audio that an AWS Elemental Link UHD device produces, when the device is configured as the source for a flow in AWS Elemental MediaConnect. +* api-change:``neptune-graph``: [``botocore``] Adds Waiters for successful creation and deletion of Graph, Graph Snapshot, Import Task and Private Endpoints for Neptune Analytics +* api-change:``rds-data``: [``botocore``] This release adds support for using RDS Data API with Aurora PostgreSQL Serverless v2 and provisioned DB clusters. +* api-change:``rds``: [``botocore``] This release adds support for using RDS Data API with Aurora PostgreSQL Serverless v2 and provisioned DB clusters. +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Training now provides model training container access for debugging purposes. Amazon SageMaker Search now provides the ability to use visibility conditions to limit resource access to a single domain or multiple domains. + + 1.34.5 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 23d7fa19c8..9cd930bbd9 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.5' +__version__ = '1.34.6' # The default Boto3 session; autoloaded when needed. diff --git a/boto3/s3/transfer.py b/boto3/s3/transfer.py index 1c8efd4016..cc445d3672 100644 --- a/boto3/s3/transfer.py +++ b/boto3/s3/transfer.py @@ -182,8 +182,8 @@ def create_transfer_manager(client, config, osutil=None): def _should_use_crt(config): - # This feature requires awscrt>=0.19.17 - if HAS_CRT and has_minimum_crt_version((0, 19, 17)): + # This feature requires awscrt>=0.19.18 + if HAS_CRT and has_minimum_crt_version((0, 19, 18)): is_optimized_instance = awscrt.s3.is_optimized_for_system() else: is_optimized_instance = False diff --git a/setup.cfg b/setup.cfg index af20bf1ed6..f0db0373d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,9 +3,9 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.5,<1.35.0 + botocore>=1.34.6,<1.35.0 jmespath>=0.7.1,<2.0.0 - s3transfer>=0.9.0,<0.10.0 + s3transfer>=0.10.0,<0.11.0 [options.extras_require] crt = botocore[crt]>=1.21.0,<2.0a0 diff --git a/setup.py b/setup.py index ae68e26af6..e5ca3f7fdd 100644 --- a/setup.py +++ b/setup.py @@ -13,9 +13,9 @@ requires = [ - 'botocore>=1.34.5,<1.35.0', + 'botocore>=1.34.6,<1.35.0', 'jmespath>=0.7.1,<2.0.0', - 's3transfer>=0.9.0,<0.10.0', + 's3transfer>=0.10.0,<0.11.0', ]