diff options
| author | Chris McDonough <chrism@plope.com> | 2012-01-06 18:35:18 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-01-06 18:35:18 -0500 |
| commit | a5d9943f643f9d4fd7a25f1a9722bf385430b768 (patch) | |
| tree | 7a41317cd7e62e874bd7af3158fd2304cccd2145 /CHANGES.txt | |
| parent | 3c59ce5e5b99d652938ef5111091ce8e2516b4d1 (diff) | |
| download | pyramid-a5d9943f643f9d4fd7a25f1a9722bf385430b768.tar.gz pyramid-a5d9943f643f9d4fd7a25f1a9722bf385430b768.tar.bz2 pyramid-a5d9943f643f9d4fd7a25f1a9722bf385430b768.zip | |
- The ``path_info`` route and view predicates now match against
``request.upath_info`` (Unicode) rather than ``request.path_info``
(indeterminate value based on Python 3 vs. Python 2). This has to be done
to normalize matching on Python 2 and Python 3.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index d5ef9dd29..65e6cceec 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,6 +8,14 @@ Bug Fixes more than one view relied on the defaults being different for configuration conflict resolution. See https://github.com/Pylons/pyramid/issues/394. +Backwards Incompatibilities +--------------------------- + +- The ``path_info`` route and view predicates now match against + ``request.upath_info`` (Unicode) rather than ``request.path_info`` + (indeterminate value based on Python 3 vs. Python 2). This has to be done + to normalize matching on Python 2 and Python 3. + 1.3a4 (2012-01-05) ================== |
