]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.22.0 (#2048) 0.22.0
authorTom Christie <tom@tomchristie.com>
Wed, 26 Jan 2022 14:47:40 +0000 (14:47 +0000)
committerGitHub <noreply@github.com>
Wed, 26 Jan 2022 14:47:40 +0000 (14:47 +0000)
* SOCKS proxy support

* Version 0.22.0

* Link to socksio

CHANGELOG.md
httpx/__version__.py
setup.py

index 826e85b82f61733bb1bf06501ef7ae5692667bd8..f4e940ee1643085c1636de745b26911a148892ae 100644 (file)
@@ -4,6 +4,18 @@ 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.22.0 (26th January, 2022)
+
+### Added
+
+* Support for [the SOCKS5 proxy protocol](https://www.python-httpx.org/advanced/#socks) via [the `socksio` package](https://github.com/sethmlarson/socksio). (#2034)
+* Support for custom headers in multipart/form-data requests (#1936)
+
+### Fixed
+
+* Don't perform unreliable close/warning on `__del__` with unclosed clients. (#2026)
+* Fix `Headers.update(...)` to correctly handle repeated headers (#2038)
+
 ## 0.21.3 (6th January, 2022)
 
 ### Fixed
index 70decd1bbe691dc47e14448783464d7f6bcf608a..f08752c89c3e2ec09c58af1809fe337e9c5d9d67 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.21.3"
+__version__ = "0.22.0"
index ba2360c0604165219433ac15e7e4c83e262301a3..304d3289b7e9c42461030f5ae776a85921ac9f52 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -60,7 +60,7 @@ setup(
         "charset_normalizer",
         "sniffio",
         "rfc3986[idna2008]>=1.3,<2",
-        "httpcore>=0.14.0,<0.15.0",
+        "httpcore>=0.14.5,<0.15.0",
         "async_generator; python_version < '3.7'"
     ],
     extras_require={