===================
- Extend list of web exceptions, add HTTPMisdirectedRequest,
HTTPUpgradeRequired, HTTPPreconditionRequired, HTTPTooManyRequests,
HTTPRequestHeaderFieldsTooLarge, HTTPVariantAlsoNegotiates,
HTTPNotExtended, HTTPNetworkAuthenticationRequired status codes (`644 <https://github.com/aio-libs/aiohttp/pull/644>`_)
- Do not remove AUTHORIZATION header by WSGI handler (`649 <https://github.com/aio-libs/aiohttp/pull/649>`_)
- Fix broken support for https proxies with authentication (`617 <https://github.com/aio-libs/aiohttp/pull/617>`_)
- Get REMOTE_* and SEVER_* http vars from headers when listening on
unix socket (`654 <https://github.com/aio-libs/aiohttp/pull/654>`_)
- Add HTTP 308 support (`663 <https://github.com/aio-libs/aiohttp/pull/663>`_)
- Add Tf format (time to serve request in seconds, %06f format) to
access log (`669 <https://github.com/aio-libs/aiohttp/pull/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 <https://github.com/aio-libs/aiohttp/pull/680>`_)
- Websocket XOR performance improved (`687 <https://github.com/aio-libs/aiohttp/pull/687>`_)
- Avoid sending cookie attributes in Cookie header (`613 <https://github.com/aio-libs/aiohttp/pull/613>`_)
- Round server timeouts to seconds for grouping pending calls. That
leads to less amount of poller syscalls e.g. epoll.poll(). (`702 <https://github.com/aio-libs/aiohttp/pull/702>`_)
- Close connection on websocket handshake error (`703 <https://github.com/aio-libs/aiohttp/pull/703>`_)
- Implement class based views (`684 <https://github.com/aio-libs/aiohttp/pull/684>`_)
- Add *headers* parameter to ws_connect() (`709 <https://github.com/aio-libs/aiohttp/pull/709>`_)
- Drop unused function `parse_remote_addr()` (`708 <https://github.com/aio-libs/aiohttp/pull/708>`_)
- Close session on exception (`707 <https://github.com/aio-libs/aiohttp/pull/707>`_)
- Store http code and headers in WSServerHandshakeError (`706 <https://github.com/aio-libs/aiohttp/pull/706>`_)
- Make some low-level message properties readonly (`710 <https://github.com/aio-libs/aiohttp/pull/710>`_)
----