diff options
| author | Markus Holtermann <info@markusholtermann.eu> | 2016-07-25 09:09:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-25 09:09:54 -0400 |
| commit | e69091b34a34697fe7eac38763dd372b305e1ab4 (patch) | |
| tree | 07c437be8e90efa04e87cc8d87ff0b6f2d3d5a3f | |
| parent | 9a5a789da2b53a9c19ea47130507ce26839eb008 (diff) | |
Refs #25232 -- Documented AllowAll*Backend in "new features" section of 1.10 release notes.
| -rw-r--r-- | docs/releases/1.10.txt | 7 |
1 files changed, 7 insertions, 0 deletions
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` ~~~~~~~~~~~~~~~~~~~~~~~~~ |
