summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJosh Schneier <josh.schneier@gmail.com>2017-09-05 12:41:38 -0400
committerTim Graham <timograham@gmail.com>2017-09-05 16:42:15 -0400
commit1d1a56c59983ae40675aff2c737bdde8f988e5e9 (patch)
tree0bc7a25e31ad9bcf2b970141a0357b60f8e9a8e0 /docs
parent312050df82919cb87180705c826302b7b9b5e367 (diff)
[1.11.x] Fixed #28555 -- Made CharField convert whitespace-only values to the empty_value when strip is enabled.
Backport of 48c394a6fc2594891f766293afec8f86d63e1015 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.6.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/1.11.6.txt b/docs/releases/1.11.6.txt
index 4069c8297e..cc8e1bfa59 100644
--- a/docs/releases/1.11.6.txt
+++ b/docs/releases/1.11.6.txt
@@ -9,4 +9,5 @@ Django 1.11.6 fixes several bugs in 1.11.5.
Bugfixes
========
-* ...
+* Made the ``CharField`` form field convert whitespace-only values to the
+ ``empty_value`` when ``strip`` is enabled (:ticket:`28555`).