summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-19 15:01:26 -0400
committerChris McDonough <chrism@plope.com>2011-04-19 15:01:26 -0400
commitf85522aaf475aa6d550ab34f0fe5ab9b018b37fe (patch)
treea25fd0dbaa547502caf63e09b9f8e38c923f8166 /CHANGES.txt
parentd3d17a21236ab0f3f1de52bd6bbde3eb3f045643 (diff)
parente099a08f680c96afb931842ed15003626611dd7a (diff)
downloadpyramid-f85522aaf475aa6d550ab34f0fe5ab9b018b37fe.tar.gz
pyramid-f85522aaf475aa6d550ab34f0fe5ab9b018b37fe.tar.bz2
pyramid-f85522aaf475aa6d550ab34f0fe5ab9b018b37fe.zip
Merge branch 'master' of https://github.com/jgonera/pyramid into jgonera-master
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 affacb7d4..95387b03b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -72,6 +72,16 @@ Features
Bug Fixes
---------
+- URL pattern markers used in URL dispatch are permitted to specify a custom
+ regex. For example, the pattern ``/{foo:\d+}`` means to match ``/12345``
+ (foo==12345 in the match dictionary) but not ``/abc``. However, custom
+ regexes in a pattern marker which used squiggly brackets did not work. For
+ example, ``/{foo:\d{4}}`` would fail to match ``/1234`` and
+ ``/{foo:\d{1,2}}`` would fail to match ``/1`` or ``/11``. One level of
+ inner squiggly brackets is now recognized so that the prior two patterns
+ given as examples now work. See also
+ https://github.com/Pylons/pyramid/issues/#issue/123.
+
- Don't send port numbers along with domain information in cookies set by
AuthTktCookieHelper (see https://github.com/Pylons/pyramid/issues/131).