summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVaĊĦek Dohnal <vaclav.dohnal@gmail.com>2024-02-08 09:21:03 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2024-02-08 11:36:28 +0100
commit1b5338d03ecc962af8ab4678426bc60b0672b8dd (patch)
tree5936e236cbd7a17ce79e6aff5111dd39157a9412 /docs
parent2f14c2cedc9c92373471c1f98a80c81ba299584a (diff)
Fixed #35174 -- Fixed Signal.asend()/asend_robust() crash when all receivers are asynchronous.
Regression in e83a88566a71a2353cebc35992c110be0f8628af.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.3.txt b/docs/releases/5.0.3.txt
index 384ce27fb7..30e87127b0 100644
--- a/docs/releases/5.0.3.txt
+++ b/docs/releases/5.0.3.txt
@@ -11,3 +11,7 @@ Bugfixes
* Fixed a regression in Django 5.0.2 where ``intcomma`` template filter could
return a leading comma for string representation of floats (:ticket:`35172`).
+
+* Fixed a bug in Django 5.0 that caused a crash of ``Signal.asend()`` and
+ ``asend_robust()`` when all receivers were asynchronous functions
+ (:ticket:`35174`).