summaryrefslogtreecommitdiff
path: root/docs/releases/3.1.3.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-10-14 11:09:49 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-10-14 20:56:04 +0200
commitbbd55e58639c33b4c5adff5f41b78deffc915c11 (patch)
tree897a15e97cb37f845cc72f5a7e95393f03318456 /docs/releases/3.1.3.txt
parent7e1e198494d4fc72cf6e153f9d24fe2493c17dc1 (diff)
Refs #32096 -- Fixed ExpressionWrapper crash with JSONField key transforms.
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Simon Charette and Igor Jerosimić for the report.
Diffstat (limited to 'docs/releases/3.1.3.txt')
-rw-r--r--docs/releases/3.1.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.3.txt b/docs/releases/3.1.3.txt
index 82cd523829..f1a9aaf42d 100644
--- a/docs/releases/3.1.3.txt
+++ b/docs/releases/3.1.3.txt
@@ -30,3 +30,7 @@ Bugfixes
* Fixed a regression in Django 3.1 that caused a crash of ``__in`` lookup when
using key transforms for :class:`~django.db.models.JSONField` in the lookup
value (:ticket:`32096`).
+
+* 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`).