summaryrefslogtreecommitdiff
path: root/docs
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 09:05:48 +0200
commitfd393907c91e855acbd6f7a287bdc8e951c328e8 (patch)
tree26e2eae5a958f04f841e38c042c35d1e4fe98b37 /docs
parent30c3d5fd731450705104dee1f3c2f67b8aad8495 (diff)
[1.11.x] 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. Backport of 6c3dfba89215fc56fc27ef61829a6fff88be4abb from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.25.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/1.11.25.txt b/docs/releases/1.11.25.txt
index 4195e8cbe0..0e9e2d7ee5 100644
--- a/docs/releases/1.11.25.txt
+++ b/docs/releases/1.11.25.txt
@@ -9,4 +9,6 @@ Django 1.11.25 fixes a regression in 1.11.23.
Bugfixes
========
-* ...
+* Fixed 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`).