diff --git a/CHANGES.rst b/CHANGES.rst index fe7e7f2c3b1..df607b329a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,37 @@ .. towncrier release notes start +3.9.1 (2023-11-26) +================== + +Bugfixes +-------- + +- Fixed importing aiohttp under PyPy on Windows. + + `#7848 `_ + +- Fixed async concurrency safety in websocket compressor. + + `#7865 `_ + +- Fixed ``ClientResponse.close()`` releasing the connection instead of closing. + + `#7869 `_ + +- Fixed a regression where connection may get closed during upgrade. -- by :user:`Dreamsorcerer` + + `#7879 `_ + +- Fixed messages being reported as upgraded without an Upgrade header in Python parser. -- by :user:`Dreamsorcerer` + + `#7895 `_ + + + +---- + + 3.9.0 (2023-11-18) ================== diff --git a/CHANGES/7848.bugfix b/CHANGES/7848.bugfix deleted file mode 100644 index 13a29e2a226..00000000000 --- a/CHANGES/7848.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix importing aiohttp under PyPy 3.8 and 3.9 on Windows. diff --git a/CHANGES/7865.bugfix b/CHANGES/7865.bugfix deleted file mode 100644 index 9a46e124486..00000000000 --- a/CHANGES/7865.bugfix +++ /dev/null @@ -1 +0,0 @@ -Restore async concurrency safety to websocket compressor diff --git a/CHANGES/7869.bugfix b/CHANGES/7869.bugfix deleted file mode 100644 index 23282fc3bb4..00000000000 --- a/CHANGES/7869.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix ClientResponse.close releasing the connection instead of closing diff --git a/CHANGES/7879.bugfix b/CHANGES/7879.bugfix deleted file mode 100644 index 08baf85be42..00000000000 --- a/CHANGES/7879.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a regression where connection may get closed during upgrade. -- by :user:`Dreamsorcerer` diff --git a/CHANGES/7895.bugfix b/CHANGES/7895.bugfix deleted file mode 100644 index 557df294d71..00000000000 --- a/CHANGES/7895.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed messages being reported as upgraded without an Upgrade header in Python parser. -- by :user:`Dreamsorcerer`