From: Florimond Manca Date: Fri, 20 Sep 2019 19:05:02 +0000 (+0200) Subject: Release 0.7.3 (#362) X-Git-Tag: 0.7.3^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a08aaa5360cad8b36f38fe24e166342524a4c7b;p=thirdparty%2Fhttpx.git Release 0.7.3 (#362) * Release 0.7.3 * Put Removed before Fixed * Add reference to keepachangelog * Add HTTP Proxy entry --- diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b75624..9e32ba4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/httpx/__version__.py b/httpx/__version__.py index 82895082..2489b005 100644 --- a/httpx/__version__.py +++ b/httpx/__version__.py @@ -1,3 +1,3 @@ __title__ = "httpx" __description__ = "A next generation HTTP client, for Python 3." -__version__ = "0.7.2" +__version__ = "0.7.3"