Releases: encode/httpcore
Version 0.14.4
Version 0.14.3
0.14.3 (November 17th, 2021)
- Fix race condition when removing closed connections from the pool (#437)
Version 0.14.2
0.14.2 (November 16th, 2021)
- Failed connections no longer remain in the pool. (Pull #433)
Version 0.14.1
Version 0.14.0
0.14.0 (November 11th, 2021)
The 0.14 release is a complete reworking of httpcore
, comprehensively addressing some underlying issues in the connection pooling, as well as substantially redesigning the API to be more user friendly.
Some of the lower-level API design also makes the components more easily testable in isolation, and the package now has 100% test coverage.
See discussion #419 for a little more background.
There's some other neat bits in there too, such as the "trace" extension, which gives a hook into inspecting the internal events that occur during the request/response cycle. This extension is needed for the HTTPX cli, in order to...
- Log the point at which the connection is established, and the IP/port on which it is made.
- Determine if the outgoing request should log as HTTP/1.1 or HTTP/2, rather than having to assume it's HTTP/2 if the --http2 flag was passed. (Which may not actually be true.)
- Log SSL version info / certificate info.
Note that curio
support is not currently available in 0.14.0. If you're using httpcore
with curio
please get in touch, so we can assess if we ought to prioritize it as a feature or not.
Version 0.13.7
0.13.7 (September 13th, 2021)
- Fix broken error messaging when URL scheme is missing, or a non HTTP(S) scheme is used. (Pull #403)
Version 0.13.6
Version 0.13.5
Version 0.13.4
0.13.4 (June 9th, 2021)
Added
- Improved error messaging when URL scheme is missing, or a non HTTP(S) scheme is used. (Pull ##354)
Fixed
- Switched to
anyio
as the default backend implementation when running withasyncio
. Resolves some awkward TLS timeout issues.