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 07:09:58 +0100
commit0773837e15bb632afffb6848a58c59a791008fa1 (patch)
treeb2891298b75e864c23de86c20b74ea440f690744 /docs
parentdbb4a86fa7c15fb9cf73a5954356eb88d65ac25f (diff)
Fixed #32182 -- Fixed crash of JSONField nested key transforms with subquery annotations on PostgreSQL.
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`).