summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHannes Ljungberg <hannes.ljungberg@gmail.com>2020-11-09 17:54:20 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-11-10 08:13:03 +0100
commitcc3870c30f0338a09e440430d5dcc028d23f1a02 (patch)
treef0662ac2c50f1974f0147511e850cb38e526620a /docs
parentd67f965c799f15d45723027d2b42aec01a1d3ca2 (diff)
[3.1.x] Fixed #32182 -- Fixed crash of JSONField nested key transforms with subquery annotations on PostgreSQL.
Backport of 0773837e15bb632afffb6848a58c59a791008fa1 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/3.1.4.txt b/docs/releases/3.1.4.txt
index 6641b0aaf5..02408cca68 100644
--- a/docs/releases/3.1.4.txt
+++ b/docs/releases/3.1.4.txt
@@ -14,3 +14,6 @@ Bugfixes
* Fixed passing extra HTTP headers to ``AsyncRequestFactory`` request methods
(:ticket:`32159`).
+
+* Fixed crash of key transforms for :class:`~django.db.models.JSONField` on
+ PostgreSQL when using on a ``Subquery()`` annotation (:ticket:`32182`).