summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-08-28 07:56:04 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-08-28 19:12:02 +0200
commit655e1ce6b1ca8df71518060ae770c3ee647b9801 (patch)
tree7393d043bf0f7a0aaeea8c8d7f10f8e5d36ae7e2 /docs
parent3a42c0447b6a3187bd2aaae0bba566d835c47d22 (diff)
[3.1.x] Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder on PostgreSQL.
Thanks Marc Debureaux for the report. Thanks Simon Charette, Nick Pope, and Adam Johnson for reviews. Backport of 0be51d2226fce030ac9ca840535a524f41e9832c from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.1.txt b/docs/releases/3.1.1.txt
index 68c02392bd..452a922608 100644
--- a/docs/releases/3.1.1.txt
+++ b/docs/releases/3.1.1.txt
@@ -51,3 +51,7 @@ Bugfixes
* Fixed detecting an async ``get_response`` callable in various builtin
middlewares (:ticket:`31928`).
+
+* Fixed a ``QuerySet.order_by()`` crash on PostgreSQL when ordering and
+ grouping by :class:`~django.db.models.JSONField` with a custom
+ :attr:`~django.db.models.JSONField.decoder` (:ticket:`31956`).