From: Kar Petrosyan <92274156+karpetrosyan@users.noreply.github.com> Date: Thu, 28 Dec 2023 12:50:43 +0000 (+0400) Subject: Add missing argument (#3023) X-Git-Tag: 0.27.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a660147edf1d32af440fdfb115b71238eda7498;p=thirdparty%2Fhttpx.git Add missing argument (#3023) * Add missing argument * chaneglog * changelog --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 84b8709c..c895f688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/httpx/_client.py b/httpx/_client.py index 2813a84f..422bf0fa 100644 --- a/httpx/_client.py +++ b/httpx/_client.py @@ -1493,6 +1493,7 @@ class AsyncClient(BaseClient): return AsyncHTTPTransport( verify=verify, cert=cert, + http1=http1, http2=http2, limits=limits, trust_env=trust_env,