]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Release 0.7.5 (#468) 0.7.5
authorSeth Michael Larson <sethmichaellarson@gmail.com>
Thu, 10 Oct 2019 14:18:22 +0000 (09:18 -0500)
committerGitHub <noreply@github.com>
Thu, 10 Oct 2019 14:18:22 +0000 (09:18 -0500)
CHANGELOG.md
httpx/__version__.py

index 2bca97d858030b32675cc5189a31abd147992ef3..b051badf9346de27be0849c7bb44614769707c6e 100644 (file)
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 
+## 0.7.5 (October 10, 2019)
+
+### Added
+
+- Allow lists of values to be passed to `params`. (Pull #386)
+- `ASGIDispatch`, `WSGIDispatch` are now available in the `httpx.dispatch` namespace. (Pull #407)
+- `HTTPError` is now available in the `httpx` namespace.  (Pull #421)
+- Add support for `start_tls()` to the Trio concurrency backend. (Pull #467)
+
+### Fixed
+
+- Username and password are no longer included in the `Host` header when basic authentication
+  credentials are supplied via the URL. (Pull #417)
+
+### Removed
+
+- The `.delete()` function no longer has `json`, `data`, or `files` parameters
+  to match the expected semantics of the `DELETE` method. (Pull #408)
+- Removed the `trio` extra. Trio support is detected automatically. (Pull #390)
+
 ## 0.7.4 (September 25, 2019)
 
 ### Added
index 0cb6368b8cf65839b6ed1658b1eb54322d981d82..ddc6dff556c9d557e8926f432a9904f97ffa54a4 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.7.4"
+__version__ = "0.7.5"