1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on expressions with params.

Regression in 4f5b58f5cd.

Thanks Florian Apolloner for the report and helping with tests.
This commit is contained in:
Mariusz Felisiak
2019-08-14 15:25:35 +02:00
committed by GitHub
parent 0b8d911d28
commit 1f8382d34d
8 changed files with 65 additions and 2 deletions

15
docs/releases/2.1.12.txt Normal file
View File

@@ -0,0 +1,15 @@
===========================
Django 2.1.12 release notes
===========================
*Expected September 2, 2019*
Django 2.1.12 fixes a regression in 2.1.11.
Bugfixes
========
* Fixed crash of ``KeyTransform()`` for
:class:`~django.contrib.postgres.fields.JSONField` and
:class:`~django.contrib.postgres.fields.HStoreField` when using on
expressions with params (:ticket:`30672`).