summaryrefslogtreecommitdiff
path: root/django/contrib/auth/__init__.py
AgeCommit message (Expand)Author
2018-03-28Fixed #29258 -- Added type checking for login()'s backend argument.Abeer Upadhyay
2018-01-03Fixed #28985 -- Removed unneeded None checks before hasattr().Дилян Палаузов
2017-09-22Refs #25187 -- Required the authenticate() method of authentication backends ...Tim Graham
2017-05-22Refs #28207 -- Fixed contrib.auth.authenticate() if 'backend' is in the crede...Daniel Hahler
2017-05-15Fixed #28207 -- Fixed contrib.auth.authenticate() if multiple auth backends d...Tamas Szabo
2017-02-24Refs #25187 -- Fixed AuthBackend.authenticate() compatibility for signatures ...Tim Graham
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-09-12Fixed #23155 -- Added request argument to user_login_failed signal.Gavin Wahl
2016-09-12Fixed #25187 -- Made request available in authentication backends.Aleksej Manaev
2016-08-15Fixed #27009 -- Made update_session_auth_hash() rotate the session key.Tim Graham
2016-05-13Fixed #26614 -- Used constant_time_compare() in checking session auth hash in...Tim Graham
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-12Fixed #26343 -- Sent user_login_failed signal if an auth backend raises Permi...ieatkittens
2016-01-07Fixed #24855 -- Allowed using contrib.auth.login() without credentials.Paulo Poiati
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-02-12Fixed #24161 -- Stored the user primary key as a serialized value in the sess...Tim Graham
2014-12-03Fixed #23939 -- Moved session verification out of SessionAuthenticationMiddle...Tim Graham
2014-11-28Fixed #23925 -- Allowed settings.AUTHENTICATION_BACKENDS to reference import ...sdeprez
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-04-17Fixed a KeyError on login with legacy sessions; refs #21649.Tim Graham
2014-04-05Fixed #21649 -- Added optional invalidation of sessions when user password ch...Tim Graham
2014-03-21Removed reading of old 'django_language' session variable per deprecation tim...Tim Graham
2014-02-22Fixed #22120 -- Documented persistent activation of languages and cleaned up ...Erik Romijn
2014-02-18Fixed #21790 -- Removed reliance on an assert in auth.get_user().Tim Graham
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-12-12Fixed #21473 -- Limited language preservation to logoutLudwik Trammer
2013-08-28Fixed #18171 -- Checked signature of authenticate() to avoid supressing TypeE...Michał Górny
2013-06-25Fixed #20642 -- Deprecated `Option.get_(add|change|delete)_permission`.Simon Charette
2013-05-24Rotate CSRF token on loginAndrew Godwin
2013-05-18Slightly reworked imports in contrib.auth.__init__Claude Paroz
2013-05-18Fixed #18998 - Prevented session crash when auth backend removedJorge Bastida
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2012-11-29Fixed #19354 -- Do not assume usermodel.pk == usermodel.idClaude Paroz
2012-11-17Fixed #2550 -- Allow the auth backends to raise the PermissionDenied exceptio...Jannis Leidel
2012-09-30Fixed #18616 -- added user_login_fail signal to contrib.authMichael Farrell
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-26Fixed #18038 -- Removed the 'supports_inactive_user' backwards-compatibility ...Claude Paroz
2012-03-13Fixed #17236 -- Clarified that anonymous session data are retained after logi...Claude Paroz