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 08:34:11 -0500
commit55e16f25e9d2050e95e448f9ab2e4b9fc845a9e5 (patch)
tree12a0cb8dd7214175ef5ca9d73a7e8ded2422b977 /docs
parentddc49820f7716a9e521e8bafda97294065d47b93 (diff)
[2.0.x] Fixed #29071 -- Fixed contrib.auth.authenticate() crash if a backend doesn't accept a request but a later one does.
Regression in a3ba2662cdaa36183fdfb8a26dfa157e26fca76a.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.10.txt4
-rw-r--r--docs/releases/2.0.2.txt4
2 files changed, 8 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`).
diff --git a/docs/releases/2.0.2.txt b/docs/releases/2.0.2.txt
index 06968d4ba3..000236af2c 100644
--- a/docs/releases/2.0.2.txt
+++ b/docs/releases/2.0.2.txt
@@ -20,3 +20,7 @@ Bugfixes
* Fixed a regression where a queryset that annotates with geometry objects
crashes (:ticket:`29054`).
+
+* Fixed a regression where ``contrib.auth.authenticate()`` crashes if an
+ authentication backend doesn't accept ``request`` and a later one does
+ (:ticket:`29071`).