From: Tom Christie Date: Thu, 17 Jun 2021 10:29:22 +0000 (+0100) Subject: Version 0.18.2 (#1690) X-Git-Tag: 0.18.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f312e629bf0f1a03ae66bc08130e2fb0799a1c89;p=thirdparty%2Fhttpx.git Version 0.18.2 (#1690) * Version 0.18.2 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index e5116cca..61aa2813 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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.18.2 (17th June, 2021) + +### Added + +* Support for Python 3.10. (Pull #1687) +* Expose `httpx.USE_CLIENT_DEFAULT`, used as the default to `auth` and `timeout` parameters in request methods. (Pull #1634) +* Support [HTTP/2 "prior knowledge"](https://python-hyper.org/projects/hyper-h2/en/v2.3.1/negotiating-http2.html#prior-knowledge), using `httpx.Client(http1=False, http2=True)`. (Pull #1624) + +### Fixed + +* Clean up some cases where warnings were being issued. (Pull #1687) +* Prefer Content-Length over Transfer-Encoding: chunked for content= cases. (Pull #1619) + ## 0.18.1 (29th April, 2021) ### Changed diff --git a/httpx/__version__.py b/httpx/__version__.py index c2cbcb42..cc829654 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.18.1" +__version__ = "0.18.2"