From e69091b34a34697fe7eac38763dd372b305e1ab4 Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Mon, 25 Jul 2016 09:09:54 -0400 Subject: [PATCH] Refs #25232 -- Documented AllowAll*Backend in "new features" section of 1.10 release notes. --- docs/releases/1.10.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt index 30a919de88..5f59dbf5c8 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -131,6 +131,13 @@ Minor features :func:`~django.contrib.auth.views.login` view allows redirecting authenticated users visiting the login page. +* The new :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend` and + :class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend` ignore + the value of ``User.is_active``, while + :class:`~django.contrib.auth.backends.ModelBackend` and + :class:`~django.contrib.auth.backends.RemoteUserBackend` now reject inactive + users. + :mod:`django.contrib.gis` ~~~~~~~~~~~~~~~~~~~~~~~~~