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

Fixed #30335, #29139 -- Fixed crash when ordering or aggregating over a nested JSONField key transform.

This commit is contained in:
can
2019-04-17 09:24:28 +03:00
committed by Mariusz Felisiak
parent f110de5c04
commit d87bd29c4f
3 changed files with 36 additions and 5 deletions

View File

@@ -33,3 +33,8 @@ Bugfixes
* Reverted an optimization in Django 2.2 (:ticket:`29725`) that caused the
inconsistent behavior of ``count()`` and ``exists()`` on a reverse
many-to-many relationship with a custom manager (:ticket:`30325`).
* Fixed a regression in Django 2.2 where
:class:`~django.core.paginator.Paginator` crashed when ``object_list`` was
a queryset ordered or aggregated over a nested ``JSONField`` key transform
(:ticket:`30335`).