summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2019-07-21 21:55:25 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-07-23 10:41:50 +0200
commit2d2859bec27c9e3994cff6be56dd5fe0f694a24c (patch)
tree54cc094a8a428e6af4ba359e2bd08d5a790c0364 /docs
parent506f800eadea2ab8c9d90f00278b4b03f3a9b771 (diff)
[2.2.x] Fixed #30506 -- Fixed crash of autoreloader when path contains null characters.
Backport of 2ff517ccb6116c1be6338e6bdcf08a313defc5c7 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.2.4.txt b/docs/releases/2.2.4.txt
index 0ad92f4ab1..af0950d700 100644
--- a/docs/releases/2.2.4.txt
+++ b/docs/releases/2.2.4.txt
@@ -18,3 +18,6 @@ Bugfixes
:class:`~django.contrib.postgres.fields.DateRangeField` or
:class:`~django.contrib.postgres.fields.DateTimeRangeField`, if the right
hand side of an expression is the same type (:ticket:`30621`).
+
+* Fixed a regression in Django 2.2 where auto-reloader crashes if a file path
+ contains nulls characters (``'\x00'``) (:ticket:`30506`).