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:09:46 +0200
commit0be51d2226fce030ac9ca840535a524f41e9832c (patch)
treef169982fe9af369944ac3130c9a50c675929dc1f /docs
parent22105391424cc56f29f153bb76d6a15246152674 (diff)
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.
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`).