diff --git a/.changes/1.34.105.json b/.changes/1.34.105.json new file mode 100644 index 0000000000..ee8c3cc9dd --- /dev/null +++ b/.changes/1.34.105.json @@ -0,0 +1,12 @@ +[ + { + "category": "``connect``", + "description": "[``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Updated a few x-id in the http uri traits", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4256b35506..75f941797c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.34.105 +======== + +* api-change:``connect``: [``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances. +* api-change:``s3``: [``botocore``] Updated a few x-id in the http uri traits + + 1.34.104 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 3877946829..3de680a60e 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.104' +__version__ = '1.34.105' # The default Boto3 session; autoloaded when needed. diff --git a/boto3/s3/inject.py b/boto3/s3/inject.py index 440be5a8be..860465aec6 100644 --- a/boto3/s3/inject.py +++ b/boto3/s3/inject.py @@ -159,8 +159,8 @@ def download_file( Usage:: import boto3 - s3 = boto3.resource('s3') - s3.meta.client.download_file('mybucket', 'hello.txt', '/tmp/hello.txt') + s3 = boto3.client('s3') + s3.download_file('mybucket', 'hello.txt', '/tmp/hello.txt') Similar behavior as S3Transfer's download_file() method, except that parameters are capitalized. Detailed examples can be found at diff --git a/setup.cfg b/setup.cfg index 3b77005b1c..d623a43c45 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.104,<1.35.0 + botocore>=1.34.105,<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 19ff749853..0b3385048d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.104,<1.35.0', + 'botocore>=1.34.105,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]