]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.23.1 (#2442) 0.23.1
authorTom Christie <tom@tomchristie.com>
Fri, 18 Nov 2022 12:48:32 +0000 (12:48 +0000)
committerGitHub <noreply@github.com>
Fri, 18 Nov 2022 12:48:32 +0000 (12:48 +0000)
* Version 0.23.1

* Update dependencies

* Update CHANGELOG

* Update CHANGELOG.md

Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
* Update CHANGELOG.md

Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
CHANGELOG.md
httpx/__version__.py
pyproject.toml
setup.py

index 6f5e7c425659a71d0c80826ad1f49a5244ed067d..d719b08ef8b13b6bbfb3012852e0c675ac506c82 100644 (file)
@@ -4,6 +4,25 @@ 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.23.1
+
+### Added
+
+* Support for Python 3.11. (#2420)
+* Allow setting an explicit multipart boundary in `Content-Type` header. (#2278)
+* Allow `tuple` or `list` for multipart values, not just `list`. (#2355)
+* Allow `str` content for multipart upload files. (#2400)
+* Support connection upgrades. See https://www.encode.io/httpcore/extensions/#upgrade-requests
+
+### Fixed
+
+* Don't drop empty query parameters. (#2354)
+
+### Removed
+
+* Drop `.read`/`.aread` from `SyncByteStream`/`AsyncByteStream`. (#2407)
+* Drop `RawURL`. (#2241)
+
 ## 0.23.0 (23rd May, 2022)
 
 ### Changed
index 68831d05c866d4f9cabdc23d19008d942cb97f9f..36a6a14f94fe2e555a73eaf9107699e62b228dc0 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.23.0"
+__version__ = "0.23.1"
index be41c92289eba0c4e52afc3b1625a04e23bcd873..592a6e26e1c73fb65ecbce391e210964a4c317af 100644 (file)
@@ -29,7 +29,7 @@ classifiers = [
 ]
 dependencies = [
     "certifi",
-    "httpcore>=0.15.0,<0.16.0",
+    "httpcore>=0.15.0,<0.17.0",
     "rfc3986[idna2008]>=1.3,<2",
     "sniffio",
 ]
index 7b44ded04a88fe2fe776fa4c1977327238cad7e5..596b378d983fd8878e41eb7e66e5b3821668ac3b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -26,6 +26,6 @@ setup(
         "certifi",
         "sniffio",
         "rfc3986[idna2008]>=1.3,<2",
-        "httpcore>=0.15.0,<0.16.0",
+        "httpcore>=0.15.0,<0.17.0",
     ],
 )