diff options
| author | Chris McDonough <chrism@plope.com> | 2012-09-16 03:54:28 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-09-16 03:54:28 -0400 |
| commit | 401b371e7933f48e4fac2627fa54f85ff9f0a9f0 (patch) | |
| tree | e6398a67619d29161d46f96df646cb736a73f4c7 /CHANGES.txt | |
| parent | fa4672fcb490dd0767fed10c557734b43cd845b8 (diff) | |
| parent | 64452edb014423054d1bbc0bb3ed8a3e47b6f611 (diff) | |
| download | pyramid-401b371e7933f48e4fac2627fa54f85ff9f0a9f0.tar.gz pyramid-401b371e7933f48e4fac2627fa54f85ff9f0a9f0.tar.bz2 pyramid-401b371e7933f48e4fac2627fa54f85ff9f0a9f0.zip | |
Merge branch 'feature.subrequest'
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 6c210600c..66ac42136 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -163,6 +163,9 @@ 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 a new + ``request.invoke_subrequest`` API. + Deprecations ------------ @@ -249,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 ------------- @@ -257,6 +266,9 @@ Documentation how to show Pyramid-generated deprecation warnings while running tests and while running a server. +- Added a "Invoking a Subrequest" chapter to the documentation. It describes + how to use the new ``request.invoke_subrequest`` API. + Dependencies ------------ |
