]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Release 0.7.3 (#362) 0.7.3
authorFlorimond Manca <florimond.manca@gmail.com>
Fri, 20 Sep 2019 19:05:02 +0000 (21:05 +0200)
committerGitHub <noreply@github.com>
Fri, 20 Sep 2019 19:05:02 +0000 (21:05 +0200)
* Release 0.7.3

* Put Removed before Fixed

* Add reference to keepachangelog

* Add HTTP Proxy entry

CHANGELOG.md
httpx/__version__.py

index b3b756241fc4be2bd65f8e98ee70144f8591f694..9e32ba4f90f32171f527d8b26f20997f96cbe9e5 100644 (file)
@@ -1,5 +1,32 @@
 # Changelog
 
+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.3 (September 20, 2019)
+
+### Added
+
+- HTTP Proxy support. (Pulls #259, #353)
+- Add Digest authentication. (Pull #332)
+- Add `.build_request()` method to `Client` and `AsyncClient`. (Pull #319)
+- Add `.elapsed` property on responses. (Pull #351)
+- Add support for `SSLKEYLOGFILE` in Python 3.8b4+. (Pull #301)
+
+### Removed
+
+- Drop NPN support for HTTP version negotiation. (Pull #314)
+
+### Fixed
+
+- Fix distribution of type annotations for mypy (Pull #361).
+- Set `Host` header when redirecting cross-origin. (Pull #321)
+- Drop `Content-Length` headers on `GET` redirects. (Pull #310)
+- Raise `KeyError` if header isn't found in `Headers`. (Pull #324)
+- Raise `NotRedirectResponse` in `response.next()` if there is no redirection to perform. (Pull #297)
+- Fix bug in calculating the HTTP/2 maximum frame size. (Pull #153)
+
 ## 0.7.2 (August 28, 2019)
 
 - Enforce using `httpx.AsyncioBackend` for the synchronous client. (Pull #232)
index 828950829d96ea6eab8a1e4776a46f34cd32c8b4..2489b005db1bc3c3fe4713c376946d6f08d17c08 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.7.2"
+__version__ = "0.7.3"