forked from psf/requests
-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.7.1 (2024-07-07) ------------------ **Added** - Official support for Python 3.13 - Support for asynchronous auth callables. - Support for asynchronous bodies through `AsyncIterable` that yield either bytes or str. - Support for purposely excluding a domain/port from connecting to QUIC/HTTP3 via the `quic_cache_layer` property of `Session`. In order to exclude `cloudflare.com` from HTTP3 auto-upgrade: ```python from niquests import Session s = Session() s.quic_cache_layer.exclude_domain("cloudflare.com") ``` **Fixed** - auth argument not accepting a function according to static type checkers. (#133) - RequestsCookieJar having a lock in `AsyncSession`. Its effect has been nullified to improve performances. **Changed** - urllib3-future lower bound version is raised to 2.8.902 --------- Co-authored-by: MtkN1 <51289448+MtkN1@users.noreply.github.com>
- Loading branch information
Showing
14 changed files
with
223 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.