]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Release 0.7.2 (#291) 0.7.2
authorSeth Michael Larson <sethmichaellarson@gmail.com>
Thu, 29 Aug 2019 12:19:02 +0000 (07:19 -0500)
committerGitHub <noreply@github.com>
Thu, 29 Aug 2019 12:19:02 +0000 (07:19 -0500)
CHANGELOG.md
httpx/__version__.py
setup.py

index b1cc654e05f201cdafde5c03a3678afad1472b2e..b3b756241fc4be2bd65f8e98ee70144f8591f694 100644 (file)
@@ -1,5 +1,16 @@
 # Changelog
 
+## 0.7.2 (August 28, 2019)
+
+- Enforce using `httpx.AsyncioBackend` for the synchronous client. (Pull #232)
+- `httpx.ConnectionPool` will properly release a dropped connection. (Pull #230)
+- Remove the `raise_app_exceptions` argument from `Client`. (Pull #238)
+- `DecodeError` will no longer be raised for an empty body encoded with Brotli. (Pull #237)
+- Added `http_versions` parameter to `Client`. (Pull #250)
+- Only use HTTP/1.1 on short-lived connections like `httpx.get()`. (Pull #284)
+- Convert `Client.cookies` and `Client.headers` when set as a property. (Pull #274)
+- Setting `HTTPX_DEBUG=1` enables debug logging on all requests. (Pull #277)
+
 ## 0.7.1 (August 18, 2019)
 
 - Include files with source distribution to be installable. (Pull #233)
index aea9e4d99fe9487445d40951fe796411cbd470e9..828950829d96ea6eab8a1e4776a46f34cd32c8b4 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.7.1"
+__version__ = "0.7.2"
index e0b42e770f7a513a1e4eeaa18788a0e72200017b..ad27702bb2b628468f0951f16b1bb53719c8e7fc 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,7 @@ setup(
         "chardet==3.*",
         "h11==0.8.*",
         "h2==3.*",
-        "hstspreload",
+        "hstspreload>=2019.8.27",
         "idna==2.*",
         "rfc3986==1.*",
     ],