summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2012-02-06 23:37:37 -0600
committerMichael Merickel <michael@merickel.org>2012-02-07 00:28:17 -0600
commit835d4812d3b5e37c54325b992f66ba45714d56cb (patch)
tree4cea5d2243cf2e617ab4f20faba1ee4944ed0161 /CHANGES.txt
parentac0ecec4c851c7d76418c1520b27619b93a808eb (diff)
downloadpyramid-835d4812d3b5e37c54325b992f66ba45714d56cb.tar.gz
pyramid-835d4812d3b5e37c54325b992f66ba45714d56cb.tar.bz2
pyramid-835d4812d3b5e37c54325b992f66ba45714d56cb.zip
Modified match_param to accept a tuple. Fixes #425.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 7d20796e1..8bfdc6d66 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -10,6 +10,10 @@ Features
- Internal: catch unhashable discriminators early (raise an error instead of
allowing them to find their way into resolveConflicts).
+- The `match_param` view predicate now accepts a string or a tuple.
+ This replaces the broken behavior of accepting a dict. See
+ https://github.com/Pylons/pyramid/issues/425 for more information.
+
Bug Fixes
---------
@@ -21,6 +25,13 @@ Bug Fixes
- The ``prequest`` script would fail when used against URLs which did not
return HTML or text. See https://github.com/Pylons/pyramid/issues/381
+Backwards Incompatibilities
+---------------------------
+
+- The `match_param` view predicate no longer accepts a dict. This will
+ have no negative affect because the implementation was broken for
+ dict-based arguments.
+
Documentation
-------------