From d59f148c9da533735846e527fded7b0b03f7fa77 Mon Sep 17 00:00:00 2001 From: Delta Regeer Date: Sun, 4 Feb 2024 16:09:02 -0700 Subject: [PATCH] Update CHANGES.txt --- CHANGES.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index bfe5ed0d..9b665e67 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -10,6 +10,23 @@ - Fixed testing of vendored asyncore code to not rely on particular naming for errno's. See https://github.com/Pylons/waitress/pull/397 +- HTTP Request methods and versions are now validated to meet the HTTP + standards thereby dropping invalid requests on the floor. See + https://github.com/Pylons/waitress/pull/423 + +- No longer close the connection when sending a HEAD request response. See + https://github.com/Pylons/waitress/pull/428 + +- Always attempt to send the Connection: close response header when we are + going to close the connection to let the remote know in more instances. + https://github.com/Pylons/waitress/pull/429 + +- Python 3.7 is no longer supported. Add support for Python 3.11, 3.12 and + PyPy 3.9, 3.10. See https://github.com/Pylons/waitress/pull/412 + +- Document that trusted_proxy may be set to a wildcard value to trust all + proxies. See https://github.com/Pylons/waitress/pull/431 + Updated Defaults ~~~~~~~~~~~~~~~~