File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.7.2 (August 28, 2019)
4+
5+ - Enforce using ` httpx.AsyncioBackend ` for the synchronous client. (Pull #232 )
6+ - ` httpx.ConnectionPool ` will properly release a dropped connection. (Pull #230 )
7+ - Remove the ` raise_app_exceptions ` argument from ` Client ` . (Pull #238 )
8+ - ` DecodeError ` will no longer be raised for an empty body encoded with Brotli. (Pull #237 )
9+ - Added ` http_versions ` parameter to ` Client ` . (Pull #250 )
10+ - Only use HTTP/1.1 on short-lived connections like ` httpx.get() ` . (Pull #284 )
11+ - Convert ` Client.cookies ` and ` Client.headers ` when set as a property. (Pull #274 )
12+ - Setting ` HTTPX_DEBUG=1 ` enables debug logging on all requests. (Pull #277 )
13+
314## 0.7.1 (August 18, 2019)
415
516- Include files with source distribution to be installable. (Pull #233 )
Original file line number Diff line number Diff line change 11__title__ = "httpx"
22__description__ = "A next generation HTTP client, for Python 3."
3- __version__ = "0.7.1 "
3+ __version__ = "0.7.2 "
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def get_packages(package):
5454 "chardet==3.*" ,
5555 "h11==0.8.*" ,
5656 "h2==3.*" ,
57- "hstspreload" ,
57+ "hstspreload>=2019.8.27 " ,
5858 "idna==2.*" ,
5959 "rfc3986==1.*" ,
6060 ],
You can’t perform that action at this time.
0 commit comments