Skip to content

Commit

Permalink
Merge branch 'release-1.34.6'
Browse files Browse the repository at this point in the history
* release-1.34.6:
  Bumping version to 1.34.6
  Add changelog entries from botocore
  Up minimum version of CRT required to support s3express (#3979)
  • Loading branch information
aws-sdk-python-automation committed Dec 21, 2023
2 parents 26e4bbb + 97a0197 commit e1632bc
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 7 deletions.
57 changes: 57 additions & 0 deletions .changes/1.34.6.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions boto3/s3/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]


Expand Down

0 comments on commit e1632bc

Please sign in to comment.