summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2010-11-18 14:13:14 -0800
committerBen Bangert <ben@groovie.org>2010-11-18 14:13:14 -0800
commitc1a3d2687cd27e85af95110f72c068a877cb662c (patch)
tree7359e63f728e342d93e227950764a6288aa7f626 /CHANGES.txt
parente84116c068f45c68752f89062fa545dd40acd63f (diff)
parenta66593d25e77f1a0e749f5590b45498bbaa66755 (diff)
downloadpyramid-c1a3d2687cd27e85af95110f72c068a877cb662c.tar.gz
pyramid-c1a3d2687cd27e85af95110f72c068a877cb662c.tar.bz2
pyramid-c1a3d2687cd27e85af95110f72c068a877cb662c.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b418565fa..4d51b89f5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -17,6 +17,9 @@ Features
- Add a ``pyramid.request.Request.route_path`` API. This is a convenience
method of the request which calls ``pyramid.url.route_url``.
+- Make test suite pass on Jython (requires PasteScript trunk, presumably to
+ be 1.7.4).
+
Bug Fixes
---------
@@ -30,6 +33,18 @@ Bug Fixes
- The ``pyramid_alchemy`` paster template had a typo, preventing an import
from working.
+- Fix apparent failures when calling ``pyramid.traversal.find_model(root,
+ path)`` or ``pyramid.traversal.traverse(path)`` when ``path`` is
+ (erroneously) a Unicode object. The user is meant to pass these APIs a
+ string object, never a Unicode object. In practice, however, users indeed
+ pass Unicode. Because the string that is passed must be ASCII encodeable,
+ now, if they pass a Unicode object, its data is eagerly converted to an
+ ASCII string rather than being passed along to downstream code as a
+ convenience to the user and to prevent puzzling second-order failures from
+ cropping up (all failures will occur within ``pyramid.traversal.traverse``
+ rather than later down the line as the result of calling
+ ``traversal_path``).
+
Backwards Incompatibilities
---------------------------