summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-25 20:52:35 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-25 20:52:35 +0000
commit8cfe7068783a3520aa3bc09f260502d002e9ac60 (patch)
treea05a4b50ce747cfef448ef795b349d0128601549 /CHANGES.txt
parenta6e0463027dee43c6aac487a9ea8bb844b1e8add (diff)
downloadpyramid-8cfe7068783a3520aa3bc09f260502d002e9ac60.tar.gz
pyramid-8cfe7068783a3520aa3bc09f260502d002e9ac60.tar.bz2
pyramid-8cfe7068783a3520aa3bc09f260502d002e9ac60.zip
- The ``repoze.bfg.urldispatch.RoutesRootFactory`` now injects the
``wsgiorg.routing_args`` environment variable into the environ when a route matches. This is a tuple of ((), routing_args) where routing_args is the value that comes back from the routes mapper match (the "match dict"). - The ``repoze.bfg.traversal.RoutesModelTraverser`` class now wants to obtain the ``view_name`` and ``subpath`` from the ``wsgiorgs.routing_args`` environment variable. It falls back to obtaining these from the context for backwards compatibility.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 524ccf508..2f996a932 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,5 @@
Next Release
+============
Features
--------
@@ -39,6 +40,17 @@ Behavior Changes
feature was never documented, and was never an API, so it's not a
backwards incompatibility.
+- The ``repoze.bfg.urldispatch.RoutesRootFactory`` now injects the
+ ``wsgiorg.routing_args`` environment variable into the environ when
+ a route matches. This is a tuple of ((), routing_args) where
+ routing_args is the value that comes back from the routes mapper
+ match (the "match dict").
+
+- The ``repoze.bfg.traversal.RoutesModelTraverser`` class now wants to
+ obtain the ``view_name`` and ``subpath`` from the
+ ``wsgiorgs.routing_args`` environment variable. It falls back to
+ obtaining these from the context for backwards compatibility.
+
Implementation Changes
----------------------