]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.23.2 (#2510) 0.23.2
authorTom Christie <tom@tomchristie.com>
Mon, 2 Jan 2023 11:46:22 +0000 (11:46 +0000)
committerGitHub <noreply@github.com>
Mon, 2 Jan 2023 11:46:22 +0000 (11:46 +0000)
* Version 0.23.2

* Update CHANGELOG.md

CHANGELOG.md
httpx/__version__.py

index a0832471b71a4fdb2eebd26fe2beac2e6edc18f3..25907a780fce11d5cc7ec45734d78180498eda34 100644 (file)
@@ -4,9 +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.23.1
+## 0.23.2 (2nd Jan, 2023)
 
-**Note**: The 0.23.1 release should have used a proper version bump, rather than a minor point release. 
+### Added
+
+* Support digest auth nonce counting to avoid multiple auth requests. (#2463)
+
+### Fixed
+
+* Multipart file uploads where the file length cannot be determine now use chunked transfer encoding, rather than loading the entire file into memory in order to determine the `Content-Length`. (#2382)
+* Raise `TypeError` if content is passed a dict-instance. (#2495)
+* Partially revert the API breaking change in 0.23.1, which removed `RawURL`. We continue to expose a `url.raw` property which is now a plain named-tuple. This API is still expected to be deprecated, but we will do so with a major version bump. (#2481)
+
+## 0.23.1 (18th Nov, 2022)
+
+**Note**: The 0.23.1 release should have used a proper version bump, rather than a minor point release.
 There are API surface area changes that may affect some users.
 See the "Removed" section of these release notes for details.
 
index 36a6a14f94fe2e555a73eaf9107699e62b228dc0..a250df5090f81e88118ba7bd0b15be276de210c9 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.23.1"
+__version__ = "0.23.2"