summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-01-30 19:31:25 -0500
committerTim Graham <timograham@gmail.com>2018-01-31 09:27:21 -0500
commit4430b83e4bcefbd7da1831df543f711d9da6bc26 (patch)
tree4e659590b785b803f2a0089655850a120147bd13 /docs
parent649d5eaa8b7b224fc0eb8a3339a589288d5b10e8 (diff)
[1.11.x] Fixed #29071 -- Fixed contrib.auth.authenticate() crash if a backend doesn't accept a request but a later one does.
Regression in a3ba2662cdaa36183fdfb8a26dfa157e26fca76a. Backport of 55e16f25e9d2050e95e448f9ab2e4b9fc845a9e5 from stable/2.0.x
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.10.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.10.txt b/docs/releases/1.11.10.txt
index 49e19614a5..88d2d007bf 100644
--- a/docs/releases/1.11.10.txt
+++ b/docs/releases/1.11.10.txt
@@ -11,3 +11,7 @@ Bugfixes
* Fixed incorrect foreign key nullification if a model has two foreign keys to
the same model and a target model is deleted (:ticket:`29016`).
+
+* Fixed a regression where ``contrib.auth.authenticate()`` crashes if an
+ authentication backend doesn't accept ``request`` and a later one does
+ (:ticket:`29071`).