summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2019-04-13 15:03:26 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-14 12:58:34 +0200
commit896cc7190115c5bcdef756fe10dc203d9b03678c (patch)
treeea5a96808a20828d9e2d8717223c4bdcd9991347 /docs
parent5ed5ce5211fb550925409ed1f6c2685276d03c4e (diff)
[2.2.x] Fixed #30350 -- Prevented recreation of migration for operations with a range object.
Thanks to Mariusz Felisiak for helping with the patch. Backport of 2e38f2015aba224b68a91a3012b87223f3046bb6 from master.
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 2b82a33d29..dcad58b2fd 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -25,3 +25,7 @@ Bugfixes
* Fixed a regression in Django 2.2 that caused a single instance fast-delete
to not set the primary key to ``None`` (:ticket:`30330`).
+
+* Prevented :djadmin:`makemigrations` from generating infinite migrations for
+ check constraints and partial indexes when ``condition`` contains
+ a :class:`~python:range` object (:ticket:`30350`).