summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-09-27 23:45:41 -0500
committerMichael Merickel <michael@merickel.org>2013-09-27 23:45:41 -0500
commitaf5fa07ca2fcc48ab357c0db4e1301bb960addca (patch)
treee5b072dbde8dbf33cca7d4f531383c88ed8b005b /CHANGES.txt
parentb731b5fca253d9d95b3307490aa585e194676c01 (diff)
downloadpyramid-af5fa07ca2fcc48ab357c0db4e1301bb960addca.tar.gz
pyramid-af5fa07ca2fcc48ab357c0db4e1301bb960addca.tar.bz2
pyramid-af5fa07ca2fcc48ab357c0db4e1301bb960addca.zip
support a None value in query string parameters
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8b2210a99..e972c08c3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,16 @@ Documentation
- Added a "Quick Tutorial" to go with the Quick Tour
+Backwards Incompatibilities
+---------------------------
+
+- The key/values in the ``_query`` parameter of ``request.route_url`` and the
+ ``query`` parameter of ``request.resource_url`` (and their variants), used
+ to encode a value of ``None`` as the string ``'None'``, leaving the resulting
+ query string to be ``a=b&key=None``. The value is now dropped in this
+ situation, leaving a query string of ``a=b&key``.
+ See https://github.com/Pylons/pyramid/issues/1119
+
1.5a2 (2013-09-22)
==================