diff options
| author | Chris McDonough <chrism@plope.com> | 2012-09-16 03:54:08 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-09-16 03:54:08 -0400 |
| commit | 64452edb014423054d1bbc0bb3ed8a3e47b6f611 (patch) | |
| tree | e6398a67619d29161d46f96df646cb736a73f4c7 /CHANGES.txt | |
| parent | b895defdcecbf9d758ad92b1bbf6a49f21620c8a (diff) | |
| download | pyramid-64452edb014423054d1bbc0bb3ed8a3e47b6f611.tar.gz pyramid-64452edb014423054d1bbc0bb3ed8a3e47b6f611.tar.bz2 pyramid-64452edb014423054d1bbc0bb3ed8a3e47b6f611.zip | |
rename subrequest to invoke_subrequest
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 6736f6d3e..66ac42136 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -163,8 +163,8 @@ Features - Added the ``pyramid.testing.testConfig`` context manager, which can be used to generate a configurator in a test, e.g. ``with testing.testConfig(...):``. -- Users can now invoke a subrequest from within view code using the - ``request.subrequest`` API. +- Users can now invoke a subrequest from within view code using a new + ``request.invoke_subrequest`` API. Deprecations ------------ @@ -252,6 +252,12 @@ Backwards Incompatibilities * ``registerSettings``, use ``pyramid.config.Configurator.add_settings`` instead. +- In Pyramid 1.3 and previous, the ``__call__`` method of a Response object + was invoked before any finished callbacks were executed. As of this + release, the ``__call__`` method of a Response object is invoked *after* + finished callbacks are executed. This is in support of the + ``request.invoke_subrequest`` feature. + Documentation ------------- @@ -261,7 +267,7 @@ Documentation while running a server. - Added a "Invoking a Subrequest" chapter to the documentation. It describes - how to use the new ``request.subrequest`` API. + how to use the new ``request.invoke_subrequest`` API. Dependencies ------------ |
