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:10:23 -0500
commit581b9e504752840fd7716e44c5c30292636355a4 (patch)
treead92e447219b54359728709a3fe597b742b798fc /docs
parentacaf30ad17709c1f9e678cbd7ca65ea6b3e55b90 (diff)
[1.8.x] Fixed #25767 -- Fixed data truncation possibility with Positive(Small)IntegerField on MySQL.
Backport of 710e11d076b9e5ef3e3b486dfb70bb55b788691c from master
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`).