summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-12-02 10:25:26 -0500
committernessita <124304+nessita@users.noreply.github.com>2025-12-03 13:08:30 -0300
commitd3f142f2cd36ba0458cc679397555bd5ee7db744 (patch)
tree8e32b675c9bda300bf62a44e0827ac40fe4209bc /docs/releases
parentea4920174e3231ff5b72b3ffb2b20432671047d9 (diff)
Refs #35859 -- Clarified Tasks ref and topics docs regarding available backends.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/6.0.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt
index 46fdb25864..89786c7ccb 100644
--- a/docs/releases/6.0.txt
+++ b/docs/releases/6.0.txt
@@ -102,6 +102,11 @@ Django now includes a built-in Tasks framework for running code outside the
HTTP request–response cycle. This enables offloading work, such as sending
emails or processing data, to background workers.
+The framework provides task definition, validation, queuing, and result
+handling. Django guarantees consistent behavior for creating and managing
+tasks, while the responsibility for running them continues to belong to
+external worker processes.
+
Tasks are defined using the :func:`~django.tasks.task` decorator::
from django.core.mail import send_mail