1
0
mirror of https://github.com/django/django.git synced 2025-02-08 00:16:31 +00:00
django/docs/releases/2.2.5.txt
Mariusz Felisiak 1f8382d34d
Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on expressions with params.
Regression in 4f5b58f5cd3c57fee9972ab074f8dc6895d8f387.

Thanks Florian Apolloner for the report and helping with tests.
2019-08-14 15:25:35 +02:00

20 lines
562 B
Plaintext

==========================
Django 2.2.5 release notes
==========================
*Expected September 2, 2019*
Django 2.2.5 fixes several bugs in 2.2.4.
Bugfixes
========
* Relaxed the system check added in Django 2.2 for models to reallow use of the
same ``db_table`` by multiple models when database routers are installed
(:ticket:`30673`).
* 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`).