summaryrefslogtreecommitdiff
path: root/django/contrib/auth/base_user.py
AgeCommit message (Expand)Author
2025-01-15Refs #35060 -- Removed passing positional arguments to Model.save()/asave() p...Sarah Boyce
2024-10-07Fixed #35303 -- Implemented async auth backends and utils.Jon Janzen
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2024-01-02Fixed #35060 -- Deprecated passing positional arguments to Model.save()/asave().Salvo Polizzi
2023-09-18Refs #33764 -- Removed BaseUserManager.make_random_password() per deprecation...Mariusz Felisiak
2023-05-18Fixed #34565 -- Added support for async checking of user passwords.HappyDingning
2023-03-08Fixed #34384 -- Fixed session validation when rotation secret keys.David Wobrock
2022-06-03Fixed #33764 -- Deprecated BaseUserManager.make_random_password().Ciaran McCormick
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
2021-01-14Refs #31842 -- Removed DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak
2021-01-14Refs #27468 -- Removed support for the pre-Django 3.1 user sessions.Mariusz Felisiak
2020-08-04Fixed #31842 -- Added DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak
2020-04-29Refs #27468 -- Made user sessions use SHA-256 algorithm.Mariusz Felisiak
2018-12-27Followed style guide for model attribute ordering.Matt Wiens
2018-03-22Fixed #28718 -- Allowed user to request a password reset if their password do...Tim Graham
2018-03-02Fixed #29176 -- Fixed AbstractBaseUser.normalize_username() crash if username...Christophe Mehay
2018-01-27Expanded docs for AbstractBaseUser.has_usable_password().Tim Graham
2017-09-07Removed unneeded __init__() methods.Sergey Fedoseev
2017-05-27Fixed #28226 -- Replaced use of str.join() with concatenation.Tom
2017-05-06Fixed #28089 -- Removed requirement to implement get_short_name() and get_ful...Josh Schneier
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #25847 -- Removed support for User.is_(anonymous|authenticated) as methods.Tim Graham
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an emai...levental
2016-06-21Refs #21379, #26719 -- Moved username normalization to AbstractBaseUser.Tim Graham
2016-05-16Refs #21379 -- Normalized unicode username inputsClaude Paroz
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-02-11Fix typo in commentCharlie Denton
2015-07-20Refs #16860 -- Moved password_changed() logic to AbstractBaseUser.Tim Graham
2015-05-05Fixed #24564 -- Moved AbstractBaseUser and BaseUserManager so they can be use...Dan Watson