Skip to content

Commit

Permalink
Bump to 3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 14, 2020
1 parent eeea5b1 commit 41eb5d0
Show file tree
Hide file tree
Showing 18 changed files with 59 additions and 18 deletions.
58 changes: 58 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,64 @@ Changelog

.. towncrier release notes start
3.7.3 (2020-11-15)
==================

Features
--------

- Use Brotli instead of brotlipy
`#3803 <https://github.com/aio-libs/aiohttp/issues/3803>`_
- Made exceptions pickleable. Also changed the repr of some exceptions.
`#4077 <https://github.com/aio-libs/aiohttp/issues/4077>`_


Bugfixes
--------

- Raise a ClientResponseError instead of an AssertionError for a blank
HTTP Reason Phrase.
`#3532 <https://github.com/aio-libs/aiohttp/issues/3532>`_
- Fix ``web_middlewares.normalize_path_middleware`` behavior for patch without slash.
`#3669 <https://github.com/aio-libs/aiohttp/issues/3669>`_
- Fix overshadowing of overlapped subbaps prefixes.
`#3701 <https://github.com/aio-libs/aiohttp/issues/3701>`_
- Make `BaseConnector.close()` a coroutine and wait until the client closes all connections. Drop deprecated "with Connector():" syntax.
`#3736 <https://github.com/aio-libs/aiohttp/issues/3736>`_
- Reset the ``sock_read`` timeout each time data is received for a ``aiohttp.client`` response.
`#3808 <https://github.com/aio-libs/aiohttp/issues/3808>`_
- Fixed type annotation for add_view method of UrlDispatcher to accept any subclass of View
`#3880 <https://github.com/aio-libs/aiohttp/issues/3880>`_
- Fixed querying the address families from DNS that the current host supports.
`#5156 <https://github.com/aio-libs/aiohttp/issues/5156>`_
- Change return type of MultipartReader.__aiter__() and BodyPartReader.__aiter__() to AsyncIterator.
`#5163 <https://github.com/aio-libs/aiohttp/issues/5163>`_
- Provide x86 Windows wheels.
`#5230 <https://github.com/aio-libs/aiohttp/issues/5230>`_


Improved Documentation
----------------------

- Add documentation for ``aiohttp.web.FileResponse``.
`#3958 <https://github.com/aio-libs/aiohttp/issues/3958>`_
- Removed deprecation warning in tracing example docs
`#3964 <https://github.com/aio-libs/aiohttp/issues/3964>`_
- Fixed wrong "Usage" docstring of ``aiohttp.client.request``.
`#4603 <https://github.com/aio-libs/aiohttp/issues/4603>`_
- Add aiohttp-pydantic to third party libraries
`#5228 <https://github.com/aio-libs/aiohttp/issues/5228>`_


Misc
----

- `#4102 <https://github.com/aio-libs/aiohttp/issues/4102>`_


----


3.7.2 (2020-10-27)
==================

Expand Down
2 changes: 0 additions & 2 deletions CHANGES/3532.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3669.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3701.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3736.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3803.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3808.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3880.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3958.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3964.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4077.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4102.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4603.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5156.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5163.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5228.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5230.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.7.2"
__version__ = "3.7.3"

from typing import Tuple

Expand Down

0 comments on commit 41eb5d0

Please sign in to comment.