summaryrefslogtreecommitdiff
path: root/docs/ref/signals.txt
AgeCommit message (Collapse)Author
2025-12-17Fixed #27380 -- Added "raw" argument to m2m_changed signals.Mariusz Felisiak
2025-09-17Refs #35859 -- Removed support for Task enqueuing on transaction commit.Jacob Walls
This removes the ability to configure Task enqueueing via a setting, since the proposed `ENQUEUE_ON_COMMIT` did not support multi-database setups. Thanks to Simon Charette for the report. Follow-up to 4289966d1b8e848e5e460b7c782dac009d746b20.
2025-09-16Fixed #35859 -- Added background Tasks framework interface.Jake Howard
This work implements what was defined in DEP 14 (https://github.com/django/deps/blob/main/accepted/0014-background-workers.rst). Thanks to Raphael Gaschignard, Eric Holscher, Ran Benita, Sarah Boyce, Jacob Walls, and Natalia Bidart for the reviews.
2025-08-25Refs #36485 -- Rewrapped docs to 79 columns line length.David Smith
Lines in the docs files were manually adjusted to conform to the 79 columns limit per line (plus newline), improving readability and consistency across the content.
2025-08-25Refs #36485 -- Removed double spaces after periods in sentences.Natalia
2025-03-31Clarified pre_delete and post_delete's origin attributes.Clifford Gama
2025-02-18Refs #36005 -- Used datetime.UTC alias instead of datetime.timezone.utc.Mariusz Felisiak
datetime.UTC was added in Python 3.11.
2023-06-23Improved style of n-tuple wording in docs and comments.Nick Pope
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-02-10Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson
Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
2023-01-17Removed versionadded/changed annotations for 4.1.Mariusz Felisiak
2022-11-23Corrected a typo in signals reference. Adam Zapletal
2022-11-02Fixed #30801 -- Improved guidance for making good use of signals.Joseph Victor Zammit
2022-11-02Fixed #34054 -- Created a new fixtures topic.Filip Lajszczak
Moved material from django-admin document into a new document, and added new material. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2022-10-20Updated UTC uses to datetime.timezone.utc in docs.Diane DeMers Chen
2022-05-17Removed versionadded/changed annotations for 4.0.Carlton Gibson
2022-03-10Changed some words to use inline markup.David Smith
2022-01-11Fixed #13251 -- Made pre/post_delete signals dispatch the origin.mgaligniana
2021-02-04Fixed #32395 -- Allowed capturing stdout of migration signals.Simon Charette
2020-07-16Refs #31502 -- Made minor edits to Model._state docs.Adam Johnson
2019-10-30Fixed typo in docs/ref/signals.txt.Gil Forcada Codinachs
2019-09-19Fixed #27462 -- Clarifed pk_set difference in m2m_changed signal receivers ↵Carlton Gibson
for add() and remove(). Thank you to Mariusz Felisiak for review.
2019-07-19Refs #30083 -- Added a warning about performing queries in pre/post_init ↵Mariusz Felisiak
receivers. Thanks Carlton Gibson the review.
2019-07-19Refs #30083 -- Clarified database state of instances in signals.pre_init docs.Mariusz Felisiak
2019-06-19Fixed typos in signals and custom management commands docs.Hasan Ramezani
2019-06-18Fixed typos and example in signals.pre_init docs.Hasan Ramezani
2018-11-20Corrected docs and removed unused code for got_request_exception signal's ↵Tim Graham
sender argument. Inaccurate since 7d1b69dbe7f72ac04d2513f0468fe2146231b286.
2017-04-06Fixed #28031 -- Removed notes about old uWSGI/sentry versions (refs #20537).Richard Barrell
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2016-10-26Clarified when the post_migrate signal is sent during migrate.Thomas Güttler
2016-07-21Fixed #26918 -- Clarified source of pre/post_save update_fields argument.Tim Graham
2016-05-15Fixed #24100 -- Made the migration signals dispatch its plan and apps.Simon Charette
Thanks Markus for your contribution and Tim for your review.
2016-04-13Fixed #26493 -- Documented how built-in signals are sent.Filipa Andrade
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-14Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham
Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review.
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-08-07Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-17Removed pre_syncdb and post_syncdb signals per deprecation timeline.Tim Graham
2014-12-24Fixed #20349 -- Moved setting_changed signal to django.core.signals.Collin Anderson
This removes the need to load django.test when not testing.
2014-11-27Added notes on registering signals in ready() and using dispatch_uid.wrwrwr
Refs #23641.
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
Thanks Collin Anderson for the review.
2014-09-02Added missing import in docs/ref/signals.txt.Alexey Efimov
2014-08-29Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.Joshua "jag" Ginsberg
2014-08-28Documented correct kwargs for post_syncdb/migrate.Aymeric Augustin
d562527a rename the db to using in the wrong signal. Thanks Maik Hoepfel for the report.
2014-06-02Fixed #22748 -- Corrected post_migrate usage example.Tim Graham
Thanks Rudolph for the report.
2014-03-26Fixed #22029 -- Removed obsolete advice on registering migrate/syncdb signal ↵Tim Graham
handlers. All signals should now be registered in AppConfig.ready(). Thanks un33k for the report.
2014-03-21Removed contrib.comments per deprecation timeline.Tim Graham
2014-02-28Fixed #22028 -- Documented that database signals aren't emitted for apps ↵Tim Graham
that laack a models module. Thanks un33k for the suggestion and donjpacheco for the draft patch.
2014-02-25Fixed docs typos.Szczepan Cieślik