summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorScott Fitsimones <iscottonline@gmail.com>2019-04-05 21:40:46 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-19 07:58:27 +0200
commita14c0fda15db7e0eb982ac7b68d47b45fc95b4cb (patch)
tree281b8c78dc5eb1fdfcfccadc2159c588b126c198 /docs
parentaed89adad54a977829c4f180b036033e031ebcc7 (diff)
Fixed #30328 -- Fixed crash of IntegerField.validators when limit_value in a custom validator is callable.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index a740f516ec..2648a60139 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -38,3 +38,7 @@ Bugfixes
:class:`~django.core.paginator.Paginator` crashed when ``object_list`` was
a queryset ordered or aggregated over a nested ``JSONField`` key transform
(:ticket:`30335`).
+
+* Fixed a regression in Django 2.2 where ``IntegerField`` validation of
+ database limits crashes if ``limit_value`` attribute in a custom validator is
+ callable (:ticket:`30328`).