summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-12-04 09:11:30 -0500
committerTim Graham <timograham@gmail.com>2014-12-04 10:59:05 -0500
commitd57124433f0d0f2bf61ea4e14962f3b663ab20c7 (patch)
tree9e6579d8c3d9a3bd6124f7b20dc2a58807abc921 /docs
parente8c88c93ecb9cedebee90d55acc8a42649720ae0 (diff)
[1.7.x] Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.
Thanks wkornewald for the report and Markus Holtermann for review. Backport of 765fa36d57d08d0568438f6fd74521e7a56abb61 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 771e353818..e3db0d404e 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -107,4 +107,7 @@ Bugfixes
* Prevented the
:class:`~django.contrib.auth.middleware.SessionAuthenticationMiddleware` from
- setting a ``"Vary: Cookie"`` header on all responses.
+ setting a ``"Vary: Cookie"`` header on all responses (:ticket:`23939`).
+
+* Fixed a crash when adding ``blank=True`` to ``TextField()`` on MySQL
+ (:ticket:`23920`).