summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2019-01-25 22:33:17 -0700
committerBert JW Regeer <bertjw@regeer.org>2019-01-25 22:33:17 -0700
commit8111dd66188ffa225fd13ece31f6f9fcb34495ba (patch)
treebf6ac53fe5c19286da012d3675018898ddea506e
parentdd6be68cbba9841b3232fd6747b73f8166f1f57b (diff)
downloadwaitress-8111dd66188ffa225fd13ece31f6f9fcb34495ba.tar.gz
Prep v1.2.1v1.2.1
-rw-r--r--CHANGES.txt14
-rw-r--r--setup.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 24def2e..4815499 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,17 @@
+1.2.1 (2019-01-25)
+------------------
+
+Bugfixes
+~~~~~~~~
+
+- When given an IPv6 address in ``X-Forwarded-For`` or ``Forwarded for=``
+ waitress was placing the IP address in ``REMOTE_ADDR`` with brackets:
+ ``[2001:db8::0]``, this does not match the requirements in the CGI spec which
+ ``REMOTE_ADDR`` was lifted from. Waitress will now place the bare IPv6
+ address in ``REMOTE_ADDR``: ``2001:db8::0``. See
+ https://github.com/Pylons/waitress/pull/232 and
+ https://github.com/Pylons/waitress/issues/230
+
1.2.0 (2019-01-15)
------------------
diff --git a/setup.py b/setup.py
index 577b745..960921c 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ testing_extras = [
setup(
name='waitress',
- version='1.2.0',
+ version='1.2.1',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
maintainer="Pylons Project",