forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
35 lines (23 loc) · 1023 Bytes
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
CHANGES
=======
0.20.0 (XX-XX-XXXX)
-------------------
- Extend list of web exceptions, add HTTPMisdirectedRequest,
HTTPUpgradeRequired, HTTPPreconditionRequired, HTTPTooManyRequests,
HTTPRequestHeaderFieldsTooLarge, HTTPVariantAlsoNegotiates,
HTTPNotExtended, HTTPNetworkAuthenticationRequired status codes #644
- Do not remove AUTHORIZATION header by WSGI handler #649
- Fix broken support for https proxies with authentication #617
- Get REMOTE_* and SEVER_* http vars from headers when listening on
unix socket #654
- Add HTTP 308 support #663
- Add Tf format (time to serve request in seconds, %06f format) to
access log #669
- Remove one and a half years long deprecated
ClientResponse.read_and_close() method
- Optimize chunked encoding: use a single syscall instead of 3 calls
on sending chunked encoded data
- Use TCP_CORK and TCP_NODELAY to optimize network latency and
throughput #680
- Weboscket XOR performance improved #687
- Avoid sending cookie attributes in Cookie header #613