summaryrefslogtreecommitdiff
path: root/django/contrib/auth/apps.py
AgeCommit message (Collapse)Author
2026-02-27Fixed #27489 -- Renamed permissions upon model renaming in migrations.Artyom Kotovskiy
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
2026-01-05Fixed #36843, #36793 -- Reverted "Fixed #27489 -- Renamed permissions upon ↵Jacob Walls
model renaming in migrations." This reverts commits f02b49d2f3bf84f5225de920ca510149f1f9f1da and 6e89271a8507fe272d11814975500a1b40303a04.
2025-08-19Fixed #27489 -- Renamed permissions upon model renaming in migrations.Artyom Kotovskiy
2024-05-22Fixed #31405 -- Added LoginRequiredMiddleware.Hisham Mahmood
Co-authored-by: Adam Johnson <me@adamj.eu> Co-authored-by: Mehmet İnce <mehmet@mehmetince.net> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2020-12-15Fixed #31007 -- Allowed specifying type of auto-created primary keys.Tom Forbes
This also changes the default type of auto-created primary keys for new apps and projects to BigAutoField.
2018-02-21Fixed #29132 -- Avoided connecting update_last_login() handler if ↵Mikhail Porokhovnichenko
User.last_login isn't a field.
2017-05-29Fixed #26823 -- Prevented update_last_login signal receiver from crashing if ↵Linus Lewandowski
User model doesn't have last_login field.
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2016-10-25Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations."Jon Dufresne
This reverts commit 1ec1633cb294d8ce2a65ece6b56c258483596fba as it doesn't handle ContentType's auth.Permission dependency. Thus, it doesn't allow auth without migrations.
2016-09-10Fixed #26401 -- Added BaseAuthConfig to use auth without migrations.Jon Dufresne
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-06Fixed #26470 -- Converted auth permission validation to system checks.Simon Charette
Thanks Tim for the review.
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-11-27Fixed #23641 -- Moved post_migrate signals for contrib apps to ↵wrwrwr
AppConfig.ready().
2014-11-11Fixed #23750 -- Allowed core.checks.register to be used as a functionaverybigant
2014-04-10Fixed #22195 -- Used constants to define built-in tags for check framework.Tim Graham
Thanks Elvard for the patch.
2014-03-06Fixed #22070 -- Changed verbose_name for apps in django.contrib to use title ↵James Jenkins
case Thanks bendavis78 for the report.
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
2014-01-05Fixed #21675 -- Added app configs for contrib apps.Aymeric Augustin