]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.23.0 (#2214) 0.23.0
authorTom Christie <tom@tomchristie.com>
Mon, 23 May 2022 15:31:12 +0000 (16:31 +0100)
committerGitHub <noreply@github.com>
Mon, 23 May 2022 15:31:12 +0000 (16:31 +0100)
* Version 0.23.0

* Update changelog

* Update httpcore dependancy

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

CHANGELOG.md
httpx/__version__.py

index f4e940ee1643085c1636de745b26911a148892ae..6f5e7c425659a71d0c80826ad1f49a5244ed067d 100644 (file)
@@ -4,6 +4,26 @@ 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.0 (23rd May, 2022)
+
+### Changed
+
+* Drop support for Python 3.6. (#2097)
+* Use `utf-8` as the default character set, instead of falling back to `charset-normalizer` for auto-detection. To enable automatic character set detection, see [the documentation](https://www.python-httpx.org/advanced/#character-set-encodings-and-auto-detection). (#2165)
+
+### Fixed
+
+* Fix `URL.copy_with` for some oddly formed URL cases. (#2185)
+* Digest authentication should use case-insensitive comparison for determining which algorithm is being used. (#2204)
+* Fix console markup escaping in command line client. (#1866)
+* When files are used in multipart upload, ensure we always seek to the start of the file. (#2065)
+* Ensure that `iter_bytes` never yields zero-length chunks. (#2068)
+* Preserve `Authorization` header for redirects that are to the same origin, but are an `http`-to-`https` upgrade. (#2074)
+* When responses have binary output, don't print the output to the console in the command line client. Use output like `<16086 bytes of binary data>` instead. (#2076)
+* Fix display of `--proxies` argument in the command line client help. (#2125)
+* Close responses when task cancellations occur during stream reading. (#2156)
+* Fix type error on accessing `.request` on `HTTPError` exceptions. (#2158)
+
 ## 0.22.0 (26th January, 2022)
 
 ### Added
index f08752c89c3e2ec09c58af1809fe337e9c5d9d67..68831d05c866d4f9cabdc23d19008d942cb97f9f 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.22.0"
+__version__ = "0.23.0"