summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-10-02 16:46:02 -0400
committerChris McDonough <chrism@plope.com>2013-10-02 16:46:02 -0400
commit39f91d2c2f334eed78d294549a8c654da0a035e4 (patch)
tree6378ffdffd1ca02186e691161271164148786d64 /CHANGES.txt
parenta2d4c260952a8e2329df0c4a66d7239f2e8d0652 (diff)
parent15afe5e7fb5dafa570faf055eb4b4a4518349409 (diff)
downloadpyramid-39f91d2c2f334eed78d294549a8c654da0a035e4.tar.gz
pyramid-39f91d2c2f334eed78d294549a8c654da0a035e4.tar.bz2
pyramid-39f91d2c2f334eed78d294549a8c654da0a035e4.zip
Merge branch 'fix.none-value-in-query-string'
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 cb28d880b..67cefb79a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -23,6 +23,16 @@ Documentation
- Removed mention of ``pyramid_beaker`` from docs. Beaker is no longer
maintained. Point people at ``pyramid_redis_sessions`` instead.
+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)
==================