From 135c4bfb2045b60c487f91a5ed490c9f2c30c002 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Thu, 14 Nov 2024 18:37:04 -0800 Subject: [PATCH] Split Python versions note into two under separate headings --- CHANGES.txt | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index a9fbab8c..cd17ff9b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,12 +1,21 @@ 3.0.1 (2024-11-28) ------------------ -Security +Backward Incompatibilities +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Python 3.8 is no longer supported. + See https://github.com/Pylons/waitress/pull/445. + +Features ~~~~~~~~ -- Python 3.8 is no longer supported. Added support for Python 3.13. +- Added support for Python 3.13. See https://github.com/Pylons/waitress/pull/445. +Security +~~~~~~~~ + - Fix a bug that would lead to Waitress busy looping on select() on a half-open socket due to a race condition that existed when creating a new HTTPChannel. See https://github.com/Pylons/waitress/pull/435,