Skip to content

Commit 2ab7358

Browse files
Version 0.23.2 (#2510)
* Version 0.23.2 * Update CHANGELOG.md
1 parent 4cbf13e commit 2ab7358

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## 0.23.1
7+
## 0.23.2 (2nd Jan, 2023)
88

9-
**Note**: The 0.23.1 release should have used a proper version bump, rather than a minor point release.
9+
### Added
10+
11+
* Support digest auth nonce counting to avoid multiple auth requests. (#2463)
12+
13+
### Fixed
14+
15+
* 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)
16+
* Raise `TypeError` if content is passed a dict-instance. (#2495)
17+
* 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)
18+
19+
## 0.23.1 (18th Nov, 2022)
20+
21+
**Note**: The 0.23.1 release should have used a proper version bump, rather than a minor point release.
1022
There are API surface area changes that may affect some users.
1123
See the "Removed" section of these release notes for details.
1224

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.23.1"
3+
__version__ = "0.23.2"

0 commit comments

Comments
 (0)