]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Release 0.7.4 (#388) 0.7.4
authorFlorimond Manca <florimond.manca@gmail.com>
Thu, 26 Sep 2019 11:45:38 +0000 (13:45 +0200)
committerGitHub <noreply@github.com>
Thu, 26 Sep 2019 11:45:38 +0000 (13:45 +0200)
CHANGELOG.md
httpx/__version__.py

index 9e32ba4f90f32171f527d8b26f20997f96cbe9e5..2bca97d858030b32675cc5189a31abd147992ef3 100644 (file)
@@ -4,6 +4,21 @@ 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.4 (September 25, 2019)
+
+### Added
+
+- Add Trio concurrency backend. (Pull #276)
+- Add `params` parameter to `Client` for setting default query parameters. (Pull #372)
+- Add support for `SSL_CERT_FILE` and `SSL_CERT_DIR` environment variables. (Pull #307)
+- Add debug logging to calls into ASGI apps. (Pull #371)
+- Add debug logging to SSL configuration. (Pull #378)
+
+### Fixed
+
+- Fix a bug when using `Client` without timeouts in Python 3.6. (Pull #383)
+- Propagate `Client` configuration to HTTP proxies. (Pull #377)
+
 ## 0.7.3 (September 20, 2019)
 
 ### Added
index 2489b005db1bc3c3fe4713c376946d6f08d17c08..0cb6368b8cf65839b6ed1658b1eb54322d981d82 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.7.3"
+__version__ = "0.7.4"