summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2021-01-29 10:19:06 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-02-04 11:19:49 +0100
commitf23b05696e470fc113c729e18665722ccbb7a9f0 (patch)
tree11d28a1c42bc49c5b35104347c09e2eba17ab6fd /docs/releases
parent31bebc558bf9a647c77ff6b372fc199008e99c1c (diff)
Fixed #32395 -- Allowed capturing stdout of migration signals.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/4.0.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt
index 3d94e8a8a9..94782e891f 100644
--- a/docs/releases/4.0.txt
+++ b/docs/releases/4.0.txt
@@ -191,7 +191,11 @@ Serialization
Signals
~~~~~~~
-* ...
+* The new ``stdout`` argument for :func:`~django.db.models.signals.pre_migrate`
+ and :func:`~django.db.models.signals.post_migrate` signals allows redirecting
+ output to a stream-like object. It should be preferred over
+ :py:data:`sys.stdout` and :py:func:`print` when emitting verbose output in
+ order to allow proper capture when testing.
Templates
~~~~~~~~~