summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrew Nester <anestor@sugarcrm.com>2016-10-25 14:23:14 +0300
committerTim Graham <timograham@gmail.com>2016-11-01 07:15:56 -0400
commit1ce04bcce0076360623ae164afd3541a5c031af2 (patch)
tree66092aa8501aef9fcad03833c24c4072b75270ab /docs
parent9c2e1ad6a5f0ca98d68df7afdb13715921949c5a (diff)
Fixed #27363 -- Replaced unsafe redirect in SessionMiddleware with SuspiciousOperation.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.10.3.txt b/docs/releases/1.10.3.txt
index ba01287aa5..cc5674f385 100644
--- a/docs/releases/1.10.3.txt
+++ b/docs/releases/1.10.3.txt
@@ -26,3 +26,7 @@ Bugfixes
* Prevented ``i18n_patterns()`` from using too much of the URL as the language
to fix a use case for ``prefix_default_language=False`` (:ticket:`27063`).
+
+* Replaced a possibly incorrect redirect from ``SessionMiddleware`` when a
+ session is destroyed in a concurrent request with a ``SuspiciousOperation``
+ to indicate that the request can't be completed (:ticket:`27363`).