v2.3.1
·
3 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
v2.3.0 is broken — do not use it.
Fixes a regression in v2.3.0 where the httpx2 dependency was pinned to
>=2.2.0, which fails on Python 3.14 builds missing the _zstd C extension.
Pins httpx2 to >=2.0.0, <2.1.0 and switches all httpx imports to
httpx2 for correct namespace resolution.
httpx2is now pinned to>=2.0.0, <2.1.0— versions 2.1.0+ require the
compression.zstdstdlib module which is not available in all Python 3.14
builds.
(#98)- All
import httpxstatements replaced withimport httpx2 as httpx(or
from httpx2 import ...) to ensure correct namespace resolution regardless
ofhttpx2version. - Added test coverage for HttpxClient
and HttpxResponse.