]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.26.0 (#3009) 0.26.0
authorKar Petrosyan <92274156+karpetrosyan@users.noreply.github.com>
Wed, 20 Dec 2023 10:52:22 +0000 (05:52 -0500)
committerGitHub <noreply@github.com>
Wed, 20 Dec 2023 10:52:22 +0000 (14:52 +0400)
* Version 0.26.0

* Update changelog

* Update CHANGELOG.md

* Add `Deprecated` section

CHANGELOG.md
httpx/__version__.py

index 950d3898cf1b3afbfe6cb0869581377efa91e731..84b8709cbeae49b67cb07bda51282f7a99ecc236 100644 (file)
@@ -4,14 +4,19 @@ 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/).
 
-## Unreleased
+## 0.26.0 (20th December, 2023)
 
-### Changed
+### Added
+
+* The `proxy` argument was added. You should use the `proxy` argument instead of the deprecated `proxies`, or use `mounts=` for more complex configurations. (#2879)
+
+### Deprecated
 
-* The `proxies` argument is now deprecated. You should use the `proxy` argument instead, or use `mounts=` for more complex configurations. (#2879)
+* The `proxies` argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)
 
 ### Fixed
 
+* Fix cases of double escaping of URL path components. Allow / as a safe character in the query portion. (#2990)
 * Handle `NO_PROXY` envvar cases when a fully qualified URL is supplied as the value. (#2741)
 * Allow URLs where username or password contains unescaped '@'. (#2986)
 * Ensure ASGI `raw_path` does not include URL query component. (#2999)
index c6bc0ac0230d53e5c25447aa9007fce1c5dc9c41..3edc842c69e989aa969331fdf73cd17a01bf3a4e 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.25.2"
+__version__ = "0.26.0"