summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-10-14 13:09:24 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-10-14 22:10:09 +0200
commit536213278c77884e9f985c18a8f9e1158f0d680a (patch)
treefa7991fd0970addfad18c2df3008caec05d5b174 /docs
parentae6b24093c7ccc730850d11bbe93e1481ebd2912 (diff)
[3.1.x] Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms in expressions.
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Backport of ee0abac169c2dcc6818d583247903c2a8ef55f7c from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.3.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/3.1.3.txt b/docs/releases/3.1.3.txt
index e6c13fff40..8c7b533b48 100644
--- a/docs/releases/3.1.3.txt
+++ b/docs/releases/3.1.3.txt
@@ -33,3 +33,9 @@ Bugfixes
* Fixed a regression in Django 3.1 that caused a crash of
:class:`~django.db.models.ExpressionWrapper` with key transforms for
:class:`~django.db.models.JSONField` (:ticket:`32096`).
+
+* Fixed a regression in Django 3.1 that caused a migrations crash on PostgreSQL
+ when adding an
+ :class:`~django.contrib.postgres.constraints.ExclusionConstraint` with key
+ transforms for :class:`~django.db.models.JSONField` in ``expressions``
+ (:ticket:`32096`).