1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #24564 -- Moved AbstractBaseUser and BaseUserManager so they can be used without auth in INSTALLED_APPS

This commit is contained in:
Dan Watson
2015-04-02 12:52:45 -04:00
committed by Tim Graham
parent 7b05d2fdae
commit fe914341c8
4 changed files with 131 additions and 107 deletions

View File

@@ -59,6 +59,12 @@ Minor features
* The ``BCryptSHA256PasswordHasher`` will now update passwords if its
``rounds`` attribute is changed.
* ``AbstractBaseUser`` and ``BaseUserManager`` were moved to a new
``django.contrib.auth.base_user`` module so that they can be imported without
including ``django.contrib.auth`` in :setting:`INSTALLED_APPS` (this raised
a deprecation warning in older versions and is no longer supported in
Django 1.9).
:mod:`django.contrib.gis`
^^^^^^^^^^^^^^^^^^^^^^^^^^