From ce9ff456ff1ac8a51b8384ee1fecf790016aa4b7 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 25 Oct 2020 09:16:15 +0200 Subject: [PATCH] Bump to 3.7.1 --- CHANGES.rst | 20 +++++++++++++++++++- CHANGES/4901.bugfix | 1 - CHANGES/4957.bugfix | 1 - CHANGES/5107.bugfix | 1 - CHANGES/5110.bugfix | 3 --- CHANGES/5115.bugfix | 1 - CHANGES/5116.bugfix | 1 - CHANGES/5124.bugfix | 1 - CHANGES/5127.bugfix | 1 - 9 files changed, 19 insertions(+), 11 deletions(-) delete mode 100644 CHANGES/4901.bugfix delete mode 100644 CHANGES/4957.bugfix delete mode 100644 CHANGES/5107.bugfix delete mode 100644 CHANGES/5110.bugfix delete mode 100644 CHANGES/5115.bugfix delete mode 100644 CHANGES/5116.bugfix delete mode 100644 CHANGES/5124.bugfix delete mode 100644 CHANGES/5127.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index eb332121848..c7cd6f29603 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,7 +14,7 @@ Changelog .. towncrier release notes start -3.7.1 (2020-10-24) +3.7.1 (2020-10-25) ================== Bugfixes @@ -22,6 +22,24 @@ Bugfixes - Fixed a type error caused by the conditional import of `Protocol`. `#5111 `_ +- Server doesn't send Content-Length for 1xx or 204 + `#4901 `_ +- Fix run_app typing + `#4957 `_ +- Always require ``typing_extensions`` library. + `#5107 `_ +- Fix a variable-shadowing bug causing `ThreadedResolver.resolve` to + return the resolved IP as the ``hostname`` in each record, which prevented + validation of HTTPS connections. + `#5110 `_ +- Added annotations to all public attributes. + `#5115 `_ +- Fix flaky test_when_timeout_smaller_second + `#5116 `_ +- Ensure sending a zero byte file does not throw an exception + `#5124 `_ +- Fix a bug in ``web.run_app()`` about Python version checking on Windows + `#5127 `_ ---- diff --git a/CHANGES/4901.bugfix b/CHANGES/4901.bugfix deleted file mode 100644 index 910bdd76685..00000000000 --- a/CHANGES/4901.bugfix +++ /dev/null @@ -1 +0,0 @@ -Server doesn't send Content-Length for 1xx or 204 diff --git a/CHANGES/4957.bugfix b/CHANGES/4957.bugfix deleted file mode 100644 index b86f1cd3e7f..00000000000 --- a/CHANGES/4957.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix run_app typing diff --git a/CHANGES/5107.bugfix b/CHANGES/5107.bugfix deleted file mode 100644 index 079e93400e2..00000000000 --- a/CHANGES/5107.bugfix +++ /dev/null @@ -1 +0,0 @@ -Always require ``typing_extensions`` library. diff --git a/CHANGES/5110.bugfix b/CHANGES/5110.bugfix deleted file mode 100644 index 14d63a9b8a2..00000000000 --- a/CHANGES/5110.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix a variable-shadowing bug causing `ThreadedResolver.resolve` to -return the resolved IP as the "hostname" in each record, which prevented -validation of HTTPS connections. diff --git a/CHANGES/5115.bugfix b/CHANGES/5115.bugfix deleted file mode 100644 index fb3fd26612f..00000000000 --- a/CHANGES/5115.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added annotations to all attrs members. diff --git a/CHANGES/5116.bugfix b/CHANGES/5116.bugfix deleted file mode 100644 index 253fd8177b0..00000000000 --- a/CHANGES/5116.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix flaky test_when_timeout_smaller_second diff --git a/CHANGES/5124.bugfix b/CHANGES/5124.bugfix deleted file mode 100644 index 7726a6bbe3a..00000000000 --- a/CHANGES/5124.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure sending a zero byte file does not throw an exception diff --git a/CHANGES/5127.bugfix b/CHANGES/5127.bugfix deleted file mode 100644 index 581ab3e8c31..00000000000 --- a/CHANGES/5127.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a bug in ``web.run_app()`` about Python version checking on Windows