METADATA 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. Metadata-Version: 2.3
  2. Name: httpcore
  3. Version: 1.0.5
  4. Summary: A minimal low-level HTTP client.
  5. Project-URL: Documentation, https://www.encode.io/httpcore
  6. Project-URL: Homepage, https://www.encode.io/httpcore/
  7. Project-URL: Source, https://github.com/encode/httpcore
  8. Author-email: Tom Christie <tom@tomchristie.com>
  9. License-Expression: BSD-3-Clause
  10. License-File: LICENSE.md
  11. Classifier: Development Status :: 3 - Alpha
  12. Classifier: Environment :: Web Environment
  13. Classifier: Framework :: AsyncIO
  14. Classifier: Framework :: Trio
  15. Classifier: Intended Audience :: Developers
  16. Classifier: License :: OSI Approved :: BSD License
  17. Classifier: Operating System :: OS Independent
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3 :: Only
  20. Classifier: Programming Language :: Python :: 3.8
  21. Classifier: Programming Language :: Python :: 3.9
  22. Classifier: Programming Language :: Python :: 3.10
  23. Classifier: Programming Language :: Python :: 3.11
  24. Classifier: Programming Language :: Python :: 3.12
  25. Classifier: Topic :: Internet :: WWW/HTTP
  26. Requires-Python: >=3.8
  27. Requires-Dist: certifi
  28. Requires-Dist: h11<0.15,>=0.13
  29. Provides-Extra: asyncio
  30. Requires-Dist: anyio<5.0,>=4.0; extra == 'asyncio'
  31. Provides-Extra: http2
  32. Requires-Dist: h2<5,>=3; extra == 'http2'
  33. Provides-Extra: socks
  34. Requires-Dist: socksio==1.*; extra == 'socks'
  35. Provides-Extra: trio
  36. Requires-Dist: trio<0.26.0,>=0.22.0; extra == 'trio'
  37. Description-Content-Type: text/markdown
  38. # HTTP Core
  39. [![Test Suite](https://github.com/encode/httpcore/workflows/Test%20Suite/badge.svg)](https://github.com/encode/httpcore/actions)
  40. [![Package version](https://badge.fury.io/py/httpcore.svg)](https://pypi.org/project/httpcore/)
  41. > *Do one thing, and do it well.*
  42. The HTTP Core package provides a minimal low-level HTTP client, which does
  43. one thing only. Sending HTTP requests.
  44. It does not provide any high level model abstractions over the API,
  45. does not handle redirects, multipart uploads, building authentication headers,
  46. transparent HTTP caching, URL parsing, session cookie handling,
  47. content or charset decoding, handling JSON, environment based configuration
  48. defaults, or any of that Jazz.
  49. Some things HTTP Core does do:
  50. * Sending HTTP requests.
  51. * Thread-safe / task-safe connection pooling.
  52. * HTTP(S) proxy & SOCKS proxy support.
  53. * Supports HTTP/1.1 and HTTP/2.
  54. * Provides both sync and async interfaces.
  55. * Async backend support for `asyncio` and `trio`.
  56. ## Requirements
  57. Python 3.8+
  58. ## Installation
  59. For HTTP/1.1 only support, install with:
  60. ```shell
  61. $ pip install httpcore
  62. ```
  63. There are also a number of optional extras available...
  64. ```shell
  65. $ pip install httpcore['asyncio,trio,http2,socks']
  66. ```
  67. # Sending requests
  68. Send an HTTP request:
  69. ```python
  70. import httpcore
  71. response = httpcore.request("GET", "https://www.example.com/")
  72. print(response)
  73. # <Response [200]>
  74. print(response.status)
  75. # 200
  76. print(response.headers)
  77. # [(b'Accept-Ranges', b'bytes'), (b'Age', b'557328'), (b'Cache-Control', b'max-age=604800'), ...]
  78. print(response.content)
  79. # b'<!doctype html>\n<html>\n<head>\n<title>Example Domain</title>\n\n<meta charset="utf-8"/>\n ...'
  80. ```
  81. The top-level `httpcore.request()` function is provided for convenience. In practice whenever you're working with `httpcore` you'll want to use the connection pooling functionality that it provides.
  82. ```python
  83. import httpcore
  84. http = httpcore.ConnectionPool()
  85. response = http.request("GET", "https://www.example.com/")
  86. ```
  87. Once you're ready to get going, [head over to the documentation](https://www.encode.io/httpcore/).
  88. ## Motivation
  89. You *probably* don't want to be using HTTP Core directly. It might make sense if
  90. you're writing something like a proxy service in Python, and you just want
  91. something at the lowest possible level, but more typically you'll want to use
  92. a higher level client library, such as `httpx`.
  93. The motivation for `httpcore` is:
  94. * To provide a reusable low-level client library, that other packages can then build on top of.
  95. * To provide a *really clear interface split* between the networking code and client logic,
  96. so that each is easier to understand and reason about in isolation.
  97. ## Dependencies
  98. The `httpcore` package has the following dependencies...
  99. * `h11`
  100. * `certifi`
  101. And the following optional extras...
  102. * `anyio` - Required by `pip install httpcore['asyncio']`.
  103. * `trio` - Required by `pip install httpcore['trio']`.
  104. * `h2` - Required by `pip install httpcore['http2']`.
  105. * `socksio` - Required by `pip install httpcore['socks']`.
  106. ## Versioning
  107. We use [SEMVER for our versioning policy](https://semver.org/).
  108. For changes between package versions please see our [project changelog](CHANGELOG.md).
  109. We recommend pinning your requirements either the most current major version, or a more specific version range:
  110. ```python
  111. pip install 'httpcore==1.*'
  112. ```
  113. # Changelog
  114. All notable changes to this project will be documented in this file.
  115. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
  116. ## 1.0.5 (March 27th, 2024)
  117. - Handle `EndOfStream` exception for anyio backend. (#899)
  118. - Allow trio `0.25.*` series in package dependancies. (#903)
  119. ## 1.0.4 (February 21st, 2024)
  120. - Add `target` request extension. (#888)
  121. - Fix support for connection `Upgrade` and `CONNECT` when some data in the stream has been read. (#882)
  122. ## 1.0.3 (February 13th, 2024)
  123. - Fix support for async cancellations. (#880)
  124. - Fix trace extension when used with socks proxy. (#849)
  125. - Fix SSL context for connections using the "wss" scheme (#869)
  126. ## 1.0.2 (November 10th, 2023)
  127. - Fix `float("inf")` timeouts in `Event.wait` function. (#846)
  128. ## 1.0.1 (November 3rd, 2023)
  129. - Fix pool timeout to account for the total time spent retrying. (#823)
  130. - Raise a neater RuntimeError when the correct async deps are not installed. (#826)
  131. - Add support for synchronous TLS-in-TLS streams. (#840)
  132. ## 1.0.0 (October 6th, 2023)
  133. From version 1.0 our async support is now optional, as the package has minimal dependencies by default.
  134. For async support use either `pip install 'httpcore[asyncio]'` or `pip install 'httpcore[trio]'`.
  135. The project versioning policy is now explicitly governed by SEMVER. See https://semver.org/.
  136. - Async support becomes fully optional. (#809)
  137. - Add support for Python 3.12. (#807)
  138. ## 0.18.0 (September 8th, 2023)
  139. - Add support for HTTPS proxies. (#745, #786)
  140. - Drop Python 3.7 support. (#727)
  141. - Handle `sni_hostname` extension with SOCKS proxy. (#774)
  142. - Handle HTTP/1.1 half-closed connections gracefully. (#641)
  143. - Change the type of `Extensions` from `Mapping[Str, Any]` to `MutableMapping[Str, Any]`. (#762)
  144. ## 0.17.3 (July 5th, 2023)
  145. - Support async cancellations, ensuring that the connection pool is left in a clean state when cancellations occur. (#726)
  146. - The networking backend interface has [been added to the public API](https://www.encode.io/httpcore/network-backends). Some classes which were previously private implementation detail are now part of the top-level public API. (#699)
  147. - Graceful handling of HTTP/2 GoAway frames, with requests being transparently retried on a new connection. (#730)
  148. - Add exceptions when a synchronous `trace callback` is passed to an asynchronous request or an asynchronous `trace callback` is passed to a synchronous request. (#717)
  149. - Drop Python 3.7 support. (#727)
  150. ## 0.17.2 (May 23th, 2023)
  151. - Add `socket_options` argument to `ConnectionPool` and `HTTProxy` classes. (#668)
  152. - Improve logging with per-module logger names. (#690)
  153. - Add `sni_hostname` request extension. (#696)
  154. - Resolve race condition during import of `anyio` package. (#692)
  155. - Enable TCP_NODELAY for all synchronous sockets. (#651)
  156. ## 0.17.1 (May 17th, 2023)
  157. - If 'retries' is set, then allow retries if an SSL handshake error occurs. (#669)
  158. - Improve correctness of tracebacks on network exceptions, by raising properly chained exceptions. (#678)
  159. - Prevent connection-hanging behaviour when HTTP/2 connections are closed by a server-sent 'GoAway' frame. (#679)
  160. - Fix edge-case exception when removing requests from the connection pool. (#680)
  161. - Fix pool timeout edge-case. (#688)
  162. ## 0.17.0 (March 16th, 2023)
  163. - Add DEBUG level logging. (#648)
  164. - Respect HTTP/2 max concurrent streams when settings updates are sent by server. (#652)
  165. - Increase the allowable HTTP header size to 100kB. (#647)
  166. - Add `retries` option to SOCKS proxy classes. (#643)
  167. ## 0.16.3 (December 20th, 2022)
  168. - Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections. (#625)
  169. - Forwarding HTTP proxies use a connection-per-remote-host. Required by some proxy implementations. (#637)
  170. - Don't raise `RuntimeError` when closing a connection pool with active connections. Removes some error cases when cancellations are used. (#631)
  171. - Lazy import `anyio`, so that it's no longer a hard dependancy, and isn't imported if unused. (#639)
  172. ## 0.16.2 (November 25th, 2022)
  173. - Revert 'Fix async cancellation behaviour', which introduced race conditions. (#627)
  174. - Raise `RuntimeError` if attempting to us UNIX domain sockets on Windows. (#619)
  175. ## 0.16.1 (November 17th, 2022)
  176. - Fix HTTP/1.1 interim informational responses, such as "100 Continue". (#605)
  177. ## 0.16.0 (October 11th, 2022)
  178. - Support HTTP/1.1 informational responses. (#581)
  179. - Fix async cancellation behaviour. (#580)
  180. - Support `h11` 0.14. (#579)
  181. ## 0.15.0 (May 17th, 2022)
  182. - Drop Python 3.6 support (#535)
  183. - Ensure HTTP proxy CONNECT requests include `timeout` configuration. (#506)
  184. - Switch to explicit `typing.Optional` for type hints. (#513)
  185. - For `trio` map OSError exceptions to `ConnectError`. (#543)
  186. ## 0.14.7 (February 4th, 2022)
  187. - Requests which raise a PoolTimeout need to be removed from the pool queue. (#502)
  188. - Fix AttributeError that happened when Socks5Connection were terminated. (#501)
  189. ## 0.14.6 (February 1st, 2022)
  190. - Fix SOCKS support for `http://` URLs. (#492)
  191. - Resolve race condition around exceptions during streaming a response. (#491)
  192. ## 0.14.5 (January 18th, 2022)
  193. - SOCKS proxy support. (#478)
  194. - Add proxy_auth argument to HTTPProxy. (#481)
  195. - Improve error message on 'RemoteProtocolError' exception when server disconnects without sending a response. (#479)
  196. ## 0.14.4 (January 5th, 2022)
  197. - Support HTTP/2 on HTTPS tunnelling proxies. (#468)
  198. - Fix proxy headers missing on HTTP forwarding. (#456)
  199. - Only instantiate SSL context if required. (#457)
  200. - More robust HTTP/2 handling. (#253, #439, #440, #441)
  201. ## 0.14.3 (November 17th, 2021)
  202. - Fix race condition when removing closed connections from the pool. (#437)
  203. ## 0.14.2 (November 16th, 2021)
  204. - Failed connections no longer remain in the pool. (Pull #433)
  205. ## 0.14.1 (November 12th, 2021)
  206. - `max_connections` becomes optional. (Pull #429)
  207. - `certifi` is now included in the install dependancies. (Pull #428)
  208. - `h2` is now strictly optional. (Pull #428)
  209. ## 0.14.0 (November 11th, 2021)
  210. The 0.14 release is a complete reworking of `httpcore`, comprehensively addressing some underlying issues in the connection pooling, as well as substantially redesigning the API to be more user friendly.
  211. Some of the lower-level API design also makes the components more easily testable in isolation, and the package now has 100% test coverage.
  212. See [discussion #419](https://github.com/encode/httpcore/discussions/419) for a little more background.
  213. There's some other neat bits in there too, such as the "trace" extension, which gives a hook into inspecting the internal events that occur during the request/response cycle. This extension is needed for the HTTPX cli, in order to...
  214. * Log the point at which the connection is established, and the IP/port on which it is made.
  215. * Determine if the outgoing request should log as HTTP/1.1 or HTTP/2, rather than having to assume it's HTTP/2 if the --http2 flag was passed. (Which may not actually be true.)
  216. * Log SSL version info / certificate info.
  217. Note that `curio` support is not currently available in 0.14.0. If you're using `httpcore` with `curio` please get in touch, so we can assess if we ought to prioritize it as a feature or not.
  218. ## 0.13.7 (September 13th, 2021)
  219. - Fix broken error messaging when URL scheme is missing, or a non HTTP(S) scheme is used. (Pull #403)
  220. ## 0.13.6 (June 15th, 2021)
  221. ### Fixed
  222. - Close sockets when read or write timeouts occur. (Pull #365)
  223. ## 0.13.5 (June 14th, 2021)
  224. ### Fixed
  225. - Resolved niggles with AnyIO EOF behaviours. (Pull #358, #362)
  226. ## 0.13.4 (June 9th, 2021)
  227. ### Added
  228. - Improved error messaging when URL scheme is missing, or a non HTTP(S) scheme is used. (Pull #354)
  229. ### Fixed
  230. - Switched to `anyio` as the default backend implementation when running with `asyncio`. Resolves some awkward [TLS timeout issues](https://github.com/encode/httpx/discussions/1511).
  231. ## 0.13.3 (May 6th, 2021)
  232. ### Added
  233. - Support HTTP/2 prior knowledge, using `httpcore.SyncConnectionPool(http1=False)`. (Pull #333)
  234. ### Fixed
  235. - Handle cases where environment does not provide `select.poll` support. (Pull #331)
  236. ## 0.13.2 (April 29th, 2021)
  237. ### Added
  238. - Improve error message for specific case of `RemoteProtocolError` where server disconnects without sending a response. (Pull #313)
  239. ## 0.13.1 (April 28th, 2021)
  240. ### Fixed
  241. - More resiliant testing for closed connections. (Pull #311)
  242. - Don't raise exceptions on ungraceful connection closes. (Pull #310)
  243. ## 0.13.0 (April 21st, 2021)
  244. The 0.13 release updates the core API in order to match the HTTPX Transport API,
  245. introduced in HTTPX 0.18 onwards.
  246. An example of making requests with the new interface is:
  247. ```python
  248. with httpcore.SyncConnectionPool() as http:
  249. status_code, headers, stream, extensions = http.handle_request(
  250. method=b'GET',
  251. url=(b'https', b'example.org', 443, b'/'),
  252. headers=[(b'host', b'example.org'), (b'user-agent', b'httpcore')]
  253. stream=httpcore.ByteStream(b''),
  254. extensions={}
  255. )
  256. body = stream.read()
  257. print(status_code, body)
  258. ```
  259. ### Changed
  260. - The `.request()` method is now `handle_request()`. (Pull #296)
  261. - The `.arequest()` method is now `.handle_async_request()`. (Pull #296)
  262. - The `headers` argument is no longer optional. (Pull #296)
  263. - The `stream` argument is no longer optional. (Pull #296)
  264. - The `ext` argument is now named `extensions`, and is no longer optional. (Pull #296)
  265. - The `"reason"` extension keyword is now named `"reason_phrase"`. (Pull #296)
  266. - The `"reason_phrase"` and `"http_version"` extensions now use byte strings for their values. (Pull #296)
  267. - The `httpcore.PlainByteStream()` class becomes `httpcore.ByteStream()`. (Pull #296)
  268. ### Added
  269. - Streams now support a `.read()` interface. (Pull #296)
  270. ### Fixed
  271. - Task cancellation no longer leaks connections from the connection pool. (Pull #305)
  272. ## 0.12.3 (December 7th, 2020)
  273. ### Fixed
  274. - Abort SSL connections on close rather than waiting for remote EOF when using `asyncio`. (Pull #167)
  275. - Fix exception raised in case of connect timeouts when using the `anyio` backend. (Pull #236)
  276. - Fix `Host` header precedence for `:authority` in HTTP/2. (Pull #241, #243)
  277. - Handle extra edge case when detecting for socket readability when using `asyncio`. (Pull #242, #244)
  278. - Fix `asyncio` SSL warning when using proxy tunneling. (Pull #249)
  279. ## 0.12.2 (November 20th, 2020)
  280. ### Fixed
  281. - Properly wrap connect errors on the asyncio backend. (Pull #235)
  282. - Fix `ImportError` occurring on Python 3.9 when using the HTTP/1.1 sync client in a multithreaded context. (Pull #237)
  283. ## 0.12.1 (November 7th, 2020)
  284. ### Added
  285. - Add connect retries. (Pull #221)
  286. ### Fixed
  287. - Tweak detection of dropped connections, resolving an issue with open files limits on Linux. (Pull #185)
  288. - Avoid leaking connections when establishing an HTTP tunnel to a proxy has failed. (Pull #223)
  289. - Properly wrap OS errors when using `trio`. (Pull #225)
  290. ## 0.12.0 (October 6th, 2020)
  291. ### Changed
  292. - HTTP header casing is now preserved, rather than always sent in lowercase. (#216 and python-hyper/h11#104)
  293. ### Added
  294. - Add Python 3.9 to officially supported versions.
  295. ### Fixed
  296. - Gracefully handle a stdlib asyncio bug when a connection is closed while it is in a paused-for-reading state. (#201)
  297. ## 0.11.1 (September 28nd, 2020)
  298. ### Fixed
  299. - Add await to async semaphore release() coroutine (#197)
  300. - Drop incorrect curio classifier (#192)
  301. ## 0.11.0 (September 22nd, 2020)
  302. The Transport API with 0.11.0 has a couple of significant changes.
  303. Firstly we've moved changed the request interface in order to allow extensions, which will later enable us to support features
  304. such as trailing headers, HTTP/2 server push, and CONNECT/Upgrade connections.
  305. The interface changes from:
  306. ```python
  307. def request(method, url, headers, stream, timeout):
  308. return (http_version, status_code, reason, headers, stream)
  309. ```
  310. To instead including an optional dictionary of extensions on the request and response:
  311. ```python
  312. def request(method, url, headers, stream, ext):
  313. return (status_code, headers, stream, ext)
  314. ```
  315. Having an open-ended extensions point will allow us to add later support for various optional features, that wouldn't otherwise be supported without these API changes.
  316. In particular:
  317. * Trailing headers support.
  318. * HTTP/2 Server Push
  319. * sendfile.
  320. * Exposing raw connection on CONNECT, Upgrade, HTTP/2 bi-di streaming.
  321. * Exposing debug information out of the API, including template name, template context.
  322. Currently extensions are limited to:
  323. * request: `timeout` - Optional. Timeout dictionary.
  324. * response: `http_version` - Optional. Include the HTTP version used on the response.
  325. * response: `reason` - Optional. Include the reason phrase used on the response. Only valid with HTTP/1.*.
  326. See https://github.com/encode/httpx/issues/1274#issuecomment-694884553 for the history behind this.
  327. Secondly, the async version of `request` is now namespaced as `arequest`.
  328. This allows concrete transports to support both sync and async implementations on the same class.
  329. ### Added
  330. - Add curio support. (Pull #168)
  331. - Add anyio support, with `backend="anyio"`. (Pull #169)
  332. ### Changed
  333. - Update the Transport API to use 'ext' for optional extensions. (Pull #190)
  334. - Update the Transport API to use `.request` and `.arequest` so implementations can support both sync and async. (Pull #189)
  335. ## 0.10.2 (August 20th, 2020)
  336. ### Added
  337. - Added Unix Domain Socket support. (Pull #139)
  338. ### Fixed
  339. - Always include the port on proxy CONNECT requests. (Pull #154)
  340. - Fix `max_keepalive_connections` configuration. (Pull #153)
  341. - Fixes behaviour in HTTP/1.1 where server disconnects can be used to signal the end of the response body. (Pull #164)
  342. ## 0.10.1 (August 7th, 2020)
  343. - Include `max_keepalive_connections` on `AsyncHTTPProxy`/`SyncHTTPProxy` classes.
  344. ## 0.10.0 (August 7th, 2020)
  345. The most notable change in the 0.10.0 release is that HTTP/2 support is now fully optional.
  346. Use either `pip install httpcore` for HTTP/1.1 support only, or `pip install httpcore[http2]` for HTTP/1.1 and HTTP/2 support.
  347. ### Added
  348. - HTTP/2 support becomes optional. (Pull #121, #130)
  349. - Add `local_address=...` support. (Pull #100, #134)
  350. - Add `PlainByteStream`, `IteratorByteStream`, `AsyncIteratorByteStream`. The `AsyncByteSteam` and `SyncByteStream` classes are now pure interface classes. (#133)
  351. - Add `LocalProtocolError`, `RemoteProtocolError` exceptions. (Pull #129)
  352. - Add `UnsupportedProtocol` exception. (Pull #128)
  353. - Add `.get_connection_info()` method. (Pull #102, #137)
  354. - Add better TRACE logs. (Pull #101)
  355. ### Changed
  356. - `max_keepalive` is deprecated in favour of `max_keepalive_connections`. (Pull #140)
  357. ### Fixed
  358. - Improve handling of server disconnects. (Pull #112)
  359. ## 0.9.1 (May 27th, 2020)
  360. ### Fixed
  361. - Proper host resolution for sync case, including IPv6 support. (Pull #97)
  362. - Close outstanding connections when connection pool is closed. (Pull #98)
  363. ## 0.9.0 (May 21th, 2020)
  364. ### Changed
  365. - URL port becomes an `Optional[int]` instead of `int`. (Pull #92)
  366. ### Fixed
  367. - Honor HTTP/2 max concurrent streams settings. (Pull #89, #90)
  368. - Remove incorrect debug log. (Pull #83)
  369. ## 0.8.4 (May 11th, 2020)
  370. ### Added
  371. - Logging via HTTPCORE_LOG_LEVEL and HTTPX_LOG_LEVEL environment variables
  372. and TRACE level logging. (Pull #79)
  373. ### Fixed
  374. - Reuse of connections on HTTP/2 in close concurrency situations. (Pull #81)
  375. ## 0.8.3 (May 6rd, 2020)
  376. ### Fixed
  377. - Include `Host` and `Accept` headers on proxy "CONNECT" requests.
  378. - De-duplicate any headers also contained in proxy_headers.
  379. - HTTP/2 flag not being passed down to proxy connections.
  380. ## 0.8.2 (May 3rd, 2020)
  381. ### Fixed
  382. - Fix connections using proxy forwarding requests not being added to the
  383. connection pool properly. (Pull #70)
  384. ## 0.8.1 (April 30th, 2020)
  385. ### Changed
  386. - Allow inherintance of both `httpcore.AsyncByteStream`, `httpcore.SyncByteStream` without type conflicts.
  387. ## 0.8.0 (April 30th, 2020)
  388. ### Fixed
  389. - Fixed tunnel proxy support.
  390. ### Added
  391. - New `TimeoutException` base class.
  392. ## 0.7.0 (March 5th, 2020)
  393. - First integration with HTTPX.