summaryrefslogtreecommitdiff
path: root/docs/releases/3.1.3.txt
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 20:56:04 +0200
commitee0abac169c2dcc6818d583247903c2a8ef55f7c (patch)
tree4c9486072a021b465a9c10039e395fc6c3de2d61 /docs/releases/3.1.3.txt
parentbbd55e58639c33b4c5adff5f41b78deffc915c11 (diff)
Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms in expressions.
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd.
Diffstat (limited to 'docs/releases/3.1.3.txt')
-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 f1a9aaf42d..38fb204397 100644
--- a/docs/releases/3.1.3.txt
+++ b/docs/releases/3.1.3.txt
@@ -34,3 +34,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`).