summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.6.txt
diff options
context:
space:
mode:
authorSimon Charette <simon.charette@zapier.com>2019-09-15 23:25:50 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-16 08:24:40 +0200
commit6c3dfba89215fc56fc27ef61829a6fff88be4abb (patch)
tree01f6b6622a675c7167b004e069d7a9a512f3791e /docs/releases/2.2.6.txt
parentbd7e0f81f8590eadcb820c976ba03c9b75bbcad6 (diff)
Fixed #30769 -- Fixed a crash when filtering against a subquery JSON/HStoreField annotation.
This was a regression introduced by 7deeabc7c7526786df6894429ce89a9c4b614086 to address CVE-2019-14234. Thanks Tim Kleinschmidt for the report and Mariusz for the tests.
Diffstat (limited to 'docs/releases/2.2.6.txt')
-rw-r--r--docs/releases/2.2.6.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.2.6.txt b/docs/releases/2.2.6.txt
index 59c29ef0a6..49d758abda 100644
--- a/docs/releases/2.2.6.txt
+++ b/docs/releases/2.2.6.txt
@@ -11,3 +11,8 @@ Bugfixes
* Fixed migrations crash on SQLite when altering a model containing partial
indexes (:ticket:`30754`).
+
+* Fixed a regression in Django 2.2.4 that caused a crash when filtering with a
+ ``Subquery()`` annotation of a queryset containing
+ :class:`~django.contrib.postgres.fields.JSONField` or
+ :class:`~django.contrib.postgres.fields.HStoreField` (:ticket:`30769`).