|
10 | 10 |
|
11 | 11 | .. towncrier release notes start |
12 | 12 |
|
| 13 | +3.8.1 (2021-11-14) |
| 14 | +================== |
| 15 | + |
| 16 | +Bugfixes |
| 17 | +-------- |
| 18 | + |
| 19 | +- Fix the error in handling the return value of `getaddrinfo`. |
| 20 | + `getaddrinfo` will return an `(int, bytes)` tuple, if CPython could not handle the address family. |
| 21 | + It will cause a index out of range error in aiohttp. For example, if user compile CPython with |
| 22 | + `--disable-ipv6` option but his system enable the ipv6. |
| 23 | + `#5901 <https://github.com/aio-libs/aiohttp/issues/5901>`_ |
| 24 | +- Do not install "examples" as a top-level package. |
| 25 | + `#6189 <https://github.com/aio-libs/aiohttp/issues/6189>`_ |
| 26 | +- Restored ability to connect IPv6-only host. |
| 27 | + `#6195 <https://github.com/aio-libs/aiohttp/issues/6195>`_ |
| 28 | +- Remove ``Signal`` from ``__all__``, replace ``aiohttp.Signal`` with ``aiosignal.Signal`` in docs |
| 29 | + `#6201 <https://github.com/aio-libs/aiohttp/issues/6201>`_ |
| 30 | +- Made chunked encoding HTTP header check stricter. |
| 31 | + `#6305 <https://github.com/aio-libs/aiohttp/issues/6305>`_ |
| 32 | + |
| 33 | + |
| 34 | +Improved Documentation |
| 35 | +---------------------- |
| 36 | + |
| 37 | +- update quick starter demo codes. |
| 38 | + `#6240 <https://github.com/aio-libs/aiohttp/issues/6240>`_ |
| 39 | +- Added an explanation of how tiny timeouts affect performance to the client reference document. |
| 40 | + `#6274 <https://github.com/aio-libs/aiohttp/issues/6274>`_ |
| 41 | +- Add flake8-docstrings to flake8 configuration, enable subset of checks. |
| 42 | + `#6276 <https://github.com/aio-libs/aiohttp/issues/6276>`_ |
| 43 | +- Added information on running complex applications with additional tasks/processes -- :user:`Dreamsorcerer`. |
| 44 | + `#6278 <https://github.com/aio-libs/aiohttp/issues/6278>`_ |
| 45 | + |
| 46 | + |
| 47 | +Misc |
| 48 | +---- |
| 49 | + |
| 50 | +- `#6205 <https://github.com/aio-libs/aiohttp/issues/6205>`_ |
| 51 | + |
| 52 | + |
| 53 | +---- |
| 54 | + |
| 55 | + |
13 | 56 | 3.8.0 (2021-10-31) |
14 | 57 | ================== |
15 | 58 |
|
|
0 commit comments