From a8570ba0beb4ed0af575f0f9b151d66eac877241 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 20 Dec 2022 12:50:47 +0000 Subject: [PATCH 1/2] Version 0.23.2 --- CHANGELOG.md | 12 ++++++++++-- httpx/__version__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0832471b7..03d48e3a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ 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 (20th Dec, 2022) -**Note**: The 0.23.1 release should have used a proper version bump, rather than a minor point release. +### 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. diff --git a/httpx/__version__.py b/httpx/__version__.py index 36a6a14f94..a250df5090 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.23.1" +__version__ = "0.23.2" From 9768314e3bcb53f01f11ae9f287a4ef991439ec9 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 2 Jan 2023 11:42:12 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03d48e3a7d..25907a780f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ 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.2 (20th Dec, 2022) +## 0.23.2 (2nd Jan, 2023) + +### Added + +* Support digest auth nonce counting to avoid multiple auth requests. (#2463) ### Fixed