We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4af5e1c commit 21450a7Copy full SHA for 21450a7
2 files changed
CHANGELOG.md
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
7
+## 0.17.0 (March 16th, 2023)
8
+
9
+- Add DEBUG level logging. (#648)
10
+- Respect HTTP/2 max concurrent streams when settings updates are sent by server. (#652)
11
+- Increase the allowable HTTP header size to 100kB. (#647)
12
+- Add `retries` option to SOCKS proxy classes. (#643)
13
14
## 0.16.3 (December 20th, 2022)
15
16
- Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections. (#625)
httpcore/__init__.py
@@ -82,7 +82,7 @@
82
"WriteError",
83
]
84
85
-__version__ = "0.16.3"
+__version__ = "0.17.0"
86
87
88
__locals = locals()
0 commit comments