summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-21 23:42:51 -0400
committerChris McDonough <chrism@plope.com>2011-04-21 23:42:51 -0400
commitba0a5f88d916d97fe52540a535b8b5520815201a (patch)
tree2210b9e549d2b7d13a9168005e5b761bce7634c0 /CHANGES.txt
parent65a5a94e13e49b29b34287ede881d323505a281b (diff)
downloadpyramid-ba0a5f88d916d97fe52540a535b8b5520815201a.tar.gz
pyramid-ba0a5f88d916d97fe52540a535b8b5520815201a.tar.bz2
pyramid-ba0a5f88d916d97fe52540a535b8b5520815201a.zip
add changelog entries, fix docs for wsgiapp2
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5f08606be..c8b264587 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -136,6 +136,13 @@ Bug Fixes
- Redirects issued by a static view did not take into account any existing
``SCRIPT_NAME`` (such as one set by a url mapping composite). Now they do.
+- The ``pyramid.wsgi.wsgiapp2`` decorator did not take into account the
+ ``SCRIPT_NAME`` in the origin request.
+
+- The ``pyramid.wsgi.wsgiapp2`` decorator effectively only worked when it
+ decorated a view found via traversal; it ignored the ``PATH_INFO`` that was
+ part of a url-dispatch-matched view.
+
Deprecations
------------
@@ -169,6 +176,12 @@ Behavior Changes
renderer changes the content type (to ``application/json`` or
``text/plain`` for JSON and string renderers respectively).
+- The ``pyramid.wsgi.wsgiapp2`` now uses a slightly different method of
+ figuring out how to "fix" ``SCRIPT_NAME`` and ``PATH_INFO`` for the
+ downstream application. As a result, those values may differ slightly from
+ the perspective of the downstream application (for example, ``SCRIPT_NAME``
+ will now never possess a trailing slash).
+
Dependencies
------------