1
0
mirror of https://github.com/django/django.git synced 2025-02-08 08:26:13 +00:00
django/docs/releases/2.1.13.txt
Simon Charette 6c3dfba892 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.
2019-09-16 08:24:40 +02:00

15 lines
396 B
Plaintext

===========================
Django 2.1.13 release notes
===========================
*Expected October 1, 2019*
Django 2.1.13 fixes a regression in 2.1.11.
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`).