summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.1.txt
diff options
context:
space:
mode:
authorSimone Pellizzari <simone6021@libero.it>2019-04-06 13:45:22 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-06 14:23:29 +0200
commitd0315584b5ed6a47b486e65f6c88f80189f337ef (patch)
treeef3f0a7dea15c43c2d1bdd8aad29054f1b61c4f5 /docs/releases/2.2.1.txt
parent47a1f2a06fac2ee88d3ba9d88e8f7c45a4f6f5e8 (diff)
Fixed #30332 -- Fixed crash of ordering by expressions with params in ArrayAgg and StringAgg.
Diffstat (limited to 'docs/releases/2.2.1.txt')
-rw-r--r--docs/releases/2.2.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index b24db37c1a..f7ac012fb7 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -17,3 +17,8 @@ Bugfixes
* Fixed a regression in Django 2.2 that caused a crash when loading the
template for the technical 500 debug page (:ticket:`30324`).
+
+* Fixed crash of ``ordering`` argument in
+ :class:`~django.contrib.postgres.aggregates.ArrayAgg` and
+ :class:`~django.contrib.postgres.aggregates.StringAgg` when it contains an
+ expression with params (:ticket:`30332`).