summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSylvain Fankhauser <sylvain.fankhauser@liip.ch>2015-06-05 15:30:03 +0200
committerTim Graham <timograham@gmail.com>2015-07-03 12:06:40 -0400
commitf5d5867a4a6aeddd58ff855a01ab4e438d938ac1 (patch)
tree73ecdbab94868fbd360f057d4dc192781bebfae6 /docs
parentb91a2a499fd562011fd275238924baa6002fb1f8 (diff)
Fixed #24877 -- Added middleware handling of response.render() errors.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt
index 75c126c38b..b5c515db09 100644
--- a/docs/releases/1.9.txt
+++ b/docs/releases/1.9.txt
@@ -480,6 +480,9 @@ Requests and Responses
:class:`~django.template.response.TemplateResponse`, commonly used with
class-based views.
+* Exceptions raised by the ``render()`` method are now passed to the
+ ``process_exception()`` method of each middleware.
+
* Request middleware can now set :attr:`HttpRequest.urlconf
<django.http.HttpRequest.urlconf>` to ``None`` to revert any changes made
by previous middleware and return to using the :setting:`ROOT_URLCONF`.