summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGeorge Marshall <george@georgemarshall.name>2015-11-16 22:28:03 -0800
committerTim Graham <timograham@gmail.com>2015-11-24 11:09:15 -0500
commit710e11d076b9e5ef3e3b486dfb70bb55b788691c (patch)
tree16f2a8fda288b6c7e732fb2a1e2a1d3a89bc7387 /docs
parenta918f8b089a1d702c50c44742f433f3a546e0aa2 (diff)
Fixed #25767 -- Fixed data truncation possibility with Positive(Small)IntegerField on MySQL.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.7.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index b11ea9781a..25f7712f10 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -46,3 +46,8 @@ Bugfixes
* Fixed ``set_FOO_order()`` crash when the ``ForeignKey`` of a model with
``order_with_respect_to`` references a model with a ``OneToOneField``
primary key (:ticket:`25786`).
+
+* Fixed incorrect validation for ``PositiveIntegerField`` and
+ ``PositiveSmallIntegerField`` on MySQL resulting in values greater than
+ 4294967295 or 65535, respectively, passing validation and being silently
+ truncated by the database (:ticket:`25767`).