summaryrefslogtreecommitdiff
path: root/django/test/signals.py
AgeCommit message (Expand)Author
2026-03-19Fixed #36958 -- Reloaded logging config when logging settings are changed in ...SnippyCodes
2023-09-29Refs #15667 -- Added resetting default renderer when FORM_RENDERER is changed.Mariusz Felisiak
2023-09-18Refs #26029 -- Removed DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Mariusz Felisiak
2023-03-07Fixed #32172 -- Adapted signals to allow async handlers.Jon Janzen
2023-01-12Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda
2023-01-12Fixed #26029 -- Allowed configuring custom file storage backends.Jarosław Wygoda
2022-03-17Prevented initialization of unused database connections.Florian Apolloner
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-12-17Changed signatures of setting_changed signal receivers.Adam Johnson
2020-12-08Fixed #32233 -- Cleaned-up duplicate connection functionality.Florian Apolloner
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2020-02-07Closed caches in clear_cache_handlers() signal handler.Jon Dufresne
2019-09-10Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak
2019-06-20Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
2016-12-21Refs #25753 -- Reset l10n cache when format settings changeClaude Paroz
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
2016-11-22Fixed #27513 -- Made Signal.send()/send_robust() a tiny bit faster.Adam Chainz
2016-06-06Fixed #26712 -- Avoided unnecessary SET TIMEZONE queries on PostgreSQL.Simon Charette
2016-05-18Moved the AUTH_USER_MODEL setting changed receiver.Simon Charette
2016-02-08Fixed #26177 -- Fixed a PostgreSQL crash with TIME_ZONE=None and USE_TZ=False.Tim Graham
2016-01-07Fixed #26038 -- Changed FileSystemStorage defaults on setting change.Simon Charette
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
2015-09-23Removed deprecated TEMPLATE_* settings per deprecation timeline.Tim Graham
2015-09-23Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham
2015-06-07Fixed #16860 -- Added password validation to django.contrib.auth.Erik Romijn
2015-05-21Fixed #17085, #24783 -- Refactored template library registration.Preston Timmons
2015-05-17Fixed #23820 -- Supported per-database time zone.Aymeric Augustin
2015-02-15Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-04Fixed #24197 -- Added clearing of staticfiles caches on settings changes duri...mlavin
2014-12-28Added initial support for loading template engines.Aymeric Augustin
2014-12-24Fixed #20349 -- Moved setting_changed signal to django.core.signals.Collin Anderson
2014-12-01Fixed #23933 -- Made override_settings(DATABASE_ROUTERS) affect the master ro...wrwrwr
2014-11-23Encapsulated TEMPLATE_DEBUG in Engine.Aymeric Augustin
2014-11-23Encapsulated TEMPLATE_CONTEXT_PROCESSORS in Engine.Aymeric Augustin
2014-11-23Removed dependency of template loaders on Django settings.Aymeric Augustin
2014-11-23Moved template loaders management in Engine.Aymeric Augustin
2014-11-23Introduced a template engine class.Aymeric Augustin
2014-11-19Simplified caching of template context processors.Aymeric Augustin
2014-11-19Simplified caching of templatetags modules.Aymeric Augustin
2014-11-19Simplified caching of get_default_timezone().Aymeric Augustin
2014-11-16Refactored getting the list of template loaders.Aymeric Augustin
2014-11-16Refactored listing template subdirectories in apps.Aymeric Augustin
2014-10-08Fixed #23600 -- Made default_storage aware of more settings changes.Duncan Parkes
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny