]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Add missing argument (#3023)
authorKar Petrosyan <92274156+karpetrosyan@users.noreply.github.com>
Thu, 28 Dec 2023 12:50:43 +0000 (16:50 +0400)
committerGitHub <noreply@github.com>
Thu, 28 Dec 2023 12:50:43 +0000 (16:50 +0400)
* Add missing argument

* chaneglog

* changelog

CHANGELOG.md
httpx/_client.py

index 84b8709cbeae49b67cb07bda51282f7a99ecc236..c895f688145f985051eddb6beaab90283b9db7fb 100644 (file)
@@ -4,6 +4,12 @@ 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
+
+### Fixed
+
+* Respect the `http1` argument while configuring proxy transports. (#3023)
+
 ## 0.26.0 (20th December, 2023)
 
 ### Added
index 2813a84f0108b48be7cdabf916057ab81cf7e585..422bf0fad8b4e3d8184c06189aa8a5e42d374bb7 100644 (file)
@@ -1493,6 +1493,7 @@ class AsyncClient(BaseClient):
         return AsyncHTTPTransport(
             verify=verify,
             cert=cert,
+            http1=http1,
             http2=http2,
             limits=limits,
             trust_env=trust_env,