Skip to content

Commit

Permalink
bump botocore dependency specification
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Aug 20, 2024
1 parent 5a17c06 commit b0f701a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
-------

2.14.0 (2024-08-20)
^^^^^^^^^^^^^^^^^^^
* bump botocore dependency specification

2.13.3 (2024-08-19)
^^^^^^^^^^^^^^^^^^^
* fix ``create_waiter_with_client()``
Expand Down
2 changes: 1 addition & 1 deletion aiobotocore/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.13.3'
__version__ = '2.14.0'
15 changes: 11 additions & 4 deletions aiobotocore/client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from botocore.auth import resolve_auth_type
from botocore.awsrequest import prepare_request_dict
from botocore.client import (
BaseClient,
Expand Down Expand Up @@ -64,15 +65,19 @@ async def create_client(
region_name, client_config = self._normalize_fips_region(
region_name, client_config
)
if auth := service_model.metadata.get('auth'):
service_signature_version = resolve_auth_type(auth)
else:
service_signature_version = service_model.metadata.get(
'signatureVersion'
)
endpoint_bridge = ClientEndpointBridge(
self._endpoint_resolver,
scoped_config,
client_config,
service_signing_name=service_model.metadata.get('signingName'),
config_store=self._config_store,
service_signature_version=service_model.metadata.get(
'signatureVersion'
),
service_signature_version=service_signature_version,
)
client_args = self._get_client_args(
service_model,
Expand Down Expand Up @@ -341,8 +346,10 @@ async def _make_api_call(self, operation_name, api_params):
'client_region': self.meta.region_name,
'client_config': self.meta.config,
'has_streaming_input': operation_model.has_streaming_input,
'auth_type': operation_model.auth_type,
'auth_type': operation_model.resolved_auth_type,
'unsigned_payload': operation_model.unsigned_payload,
}

api_params = await self._emit_api_params(
api_params=api_params,
operation_model=operation_model,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
# NOTE: When updating botocore make sure to update awscli/boto3 versions below
install_requires = [
# pegged to also match items in `extras_require`
'botocore>=1.34.70,<1.34.163',
'botocore>=1.35.0,<1.35.2',
'aiohttp>=3.9.2,<4.0.0',
'wrapt>=1.10.10, <2.0.0',
'aioitertools>=0.5.1,<1.0.0',
]

extras_require = {
'awscli': ['awscli>=1.32.70,<1.33.45'],
'boto3': ['boto3>=1.34.70,<1.34.163'],
'awscli': ['awscli>=1.34.0,<1.34.2'],
'boto3': ['boto3>=1.35.0,<1.35.2'],
}


Expand Down
7 changes: 3 additions & 4 deletions tests/test_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
},
# client.py
ClientCreator.create_client: {
'eeb7c4730ac86aec37de53b2be0779490b05f50b',
'e5bfb3213dc625a3c96e13ca7514f1ca7fc18899',
},
ClientCreator._create_client_class: {
'fcecaf8d4f2c1ac3c5d0eb50c573233ef86d641d',
Expand Down Expand Up @@ -178,8 +178,7 @@
'06864c8ecac153fa36d9d57f0057cb95909ee7cd',
},
BaseClient._make_api_call: {
'2cb11088d36a89cf9f5c41508bce908acbde24c4',
'490a95d7f829ce1fc2e3fbb6169ee63f04d6aeeb',
'fccb87670b86bd0bd834d5c38b74e1d77211590a',
},
BaseClient._make_request: {
'cfd8bbf19ea132134717cdf9c460694ddacdbf58',
Expand All @@ -203,7 +202,7 @@
# config.py
Config.merge: {'c3dd8c3ffe0da86953ceba4a35267dfb79c6a2c8'},
Config: {
'9154efda503c21ab9aa048214ddca7aa637e2ff9',
'823f8d031fc7218a600a56268a369aaa878f46c8',
},
# credentials.py
create_mfa_serial_refresher: {'9b5e98782fcacdcea5899a6d0d29d1b9de348bb0'},
Expand Down

0 comments on commit b0f701a

Please sign in to comment.