]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.14.2 (#1207) 0.14.2
authorTom Christie <tom@tomchristie.com>
Mon, 24 Aug 2020 10:03:26 +0000 (11:03 +0100)
committerGitHub <noreply@github.com>
Mon, 24 Aug 2020 10:03:26 +0000 (11:03 +0100)
* Version 0.14.2

* Update CHANGELOG.md

* Update release notes

CHANGELOG.md
httpx/__version__.py

index 9593b94afcb63f5cb55ada157b50e8811933d95d..d61d33ea3b9852218b9ca4d9c892719bddca691f 100644 (file)
@@ -4,6 +4,25 @@ 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.14.2 (August 24th, 2020)
+
+### Added
+
+* Support `client.get(..., auth=None)` to bypass the default authentication on a clients. (Pull #1115)
+* Support `client.auth = ...` property setter. (Pull #1185)
+* Support `httpx.get(..., proxies=...)` on top-level request functions. (Pull #1198)
+* Display instances with nicer import styles. (Eg. <httpx.ReadTimeout ...>) (Pull #1155)
+* Support `cookies=[(key, value)]` list-of-two-tuples style usage. (Pull #1211)
+
+### Fixed
+
+* Ensure that automatically included headers on a request may be modified. (Pull #1205)
+* Allow explicit `Content-Length` header on streaming requests. (Pull #1170)
+* Handle URL quoted usernames and passwords properly. (Pull #1159)
+* Use more consistent default for `HEAD` requests, setting `allow_redirects=True`. (Pull #1183)
+* If a transport error occurs while streaming the response, raise an `httpx` exception, not the underlying `httpcore` exception. (Pull #1190)
+* Include the underlying `httpcore` traceback, when transport exceptions occur. (Pull #1199)
+
 ## 0.14.1 (August 11th, 2020)
 
 ### Added
index 11b81182280422dc36686de1e38fd93aebfdb487..561d74af2b9808571c81bc9defd7f918598be0a5 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.14.1"
+__version__ = "0.14.2"