3.9.1
Changed 3
- Update botocore dependency specification to support botocore >= 1.43.66, < 1.43.76
- Seed the amz-sdk-request header's max token on the initial request attempt instead of only after a retry occurs
- Honor a per-request read_timeout override when computing retry timing to match botocore 1.43.66 and 1.43.72
Fixed 2
- Fix login credential refreshes by calling the generated create_oauth2_token method directly instead of botocore's sync-only create_o_auth2_token compatibility alias
- Fix a concurrency-safety issue in HTTPSession session management
From aiobotocore
- bump botocore dependency specification to support
"botocore >= 1.43.66, < 1.43.76"(#1693, #1709) - seed the
amz-sdk-requestheader'smaxtoken on the initial request attempt (previously only appeared once a retry occurred) and honour a per-requestread_timeoutoverride when computing retry timing, matching botocore 1.43.66 and 1.43.72 (#1709) - fix login credential refreshes calling botocore's sync-only
create_o_auth2_tokencompatibility alias, which aiobotocore cannot resolve asynchronously, by calling the generatedcreate_oauth2_tokenmethod directly (closes #1697) (#1704) - fix a concurrency-safety issue in
HTTPSessionsession management (closes #1695) (#1696)