summaryrefslogtreecommitdiff
path: root/docs/topics/signals.txt
AgeCommit message (Collapse)Author
2026-03-09Fixed #36600 -- Clarified the use cases for dispatch_uid in signal connection.Amar
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
2026-02-10Fixed #34352 -- Unified terms in Signals docs.Hossam Hassan
2025-11-07Fixed #36315 -- Used TaskGroup instead of asyncio.gather().Thomas Grainger
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-03-23Fixed typo in docs/topics/signals.txt.mguegnol
2024-05-22Removed versionadded/changed annotations for 5.0.Natalia
This also removes remaining versionadded/changed annotations for older versions.
2024-03-28Fixed typo in docs/topics/signals.txt.Matthias Kestenholz
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
https://github.com/psf/black/releases/tag/24.1.0
2023-03-07Fixed #32172 -- Adapted signals to allow async handlers.Jon Janzen
co-authored-by: kozzztik <kozzztik@mail.ru> co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2022-11-02Fixed #30801 -- Improved guidance for making good use of signals.Joseph Victor Zammit
2022-08-16Fixed #33909 -- Corrected django.dispatch.receiver() signature.Youssef
2022-07-02Fixed typo in docs/topics/signals.txt.Aristotelis Mikropoulos
2021-11-26Refs #33163 -- Corrected example of connection signal handlers in ↵Mariusz Felisiak
AppConfig.ready().
2021-11-17Fixed #33163 -- Added example of connection signal handlers in ↵Roxane
AppConfig.ready() to docs.
2021-11-04Corrected multiply defined labels in docs.Mariusz Felisiak
2021-07-16Fixed typo in docs/topics/signals.txt.Haki Benita
2021-04-03Fixed #32594 -- Doc'd and tested that Signal.disconnect() with lazy ↵Hugo Cachitas
references returns None.
2020-07-08Fixed #24816 -- Clarified docs about preventing duplicate signals.Jason Held
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2019-10-28Documented the order in which signal receivers are called.Adam Johnson
2019-09-25Documented admonition on when to use custom signals (#11814)Adam Johnson
Thanks Cesar Canassa for the suggestion and Aymeric Augustin for review.
2019-09-06Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze
involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
2017-06-26Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
2017-01-17Refs #24205 -- Removed Signal.disconnect()'s weak argument.Tim Graham
Per deprecation timeline.
2016-11-24Rephrased an ambiguous sentence in docs/topics/signals.txt.Daniel Musketa
2016-11-23Fixed typo in docs/topics/signals.txt.Daniel Musketa
2016-04-13Fixed #26493 -- Documented how built-in signals are sent.Filipa Andrade
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-23Fixed #24205 -- Deprecated Signal.disconnect weak parameter.Florian Apolloner
2015-01-02Added return value to Signal.disconnect().Andriy Sokolovskiy
2014-11-27Added notes on registering signals in ready() and using dispatch_uid.wrwrwr
Refs #23641.
2014-08-19Removed unnecessary code-block directives.areski
2014-05-16Fixed #16245 -- Included traceback in send_robust()'s responseUnai Zalakain
Exceptions from the (receiver, exception) tuples returned by ``send_robust()`` now have always their traceback attached as their ``__traceback__`` argument.
2014-04-25Fixed #22507 -- Clarified nature of the sender argument of signalsClaude Paroz
2013-12-31Renamed AppConfig.setup to ready.Aymeric Augustin
Thanks Jannis and Marc for the feedback. Fixed #21717.
2013-12-30Updated advice on connecting signals at startup.Aymeric Augustin
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-02-23Fixed #19579 - Documented that "providing_args" is purely documentational.Tim Graham
2012-12-26Fixed broken links, round 3. refs #19516Tim Graham
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-07-25Update docs/topics/signals.txtnklas
Fixed a typo.
2012-06-23Fixed #18454 -- Added ability to pass a list of signals to `receiver`.Dmitry Medvinsky
Added ability to use receiver decorator in the following way: @receiver([post_save, post_delete], sender=MyModel) def signals_receiver(sender, **kwargs): ...
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2011-10-14Fixed many more ReST indentation errors, somehow accidentally missed from ↵Luke Plant
[16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-05-13Fixed #16014 -- numerous documentation typos -- thanks psmith.Simon Meers
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16220 bcc190cf-cafb-0310-a4f2-bffc1f526a37