1
0
mirror of https://github.com/django/django.git synced 2025-08-21 01:09:13 +00:00

Refs #36210 -- Added release note for further subquery support for composite pks.

Follow-up to fd569dd45bf0746378faf7f65172497f21ed27f0.
This commit is contained in:
Jacob Walls 2025-08-10 17:23:14 -04:00 committed by Sarah Boyce
parent 181e3bd71c
commit eed7f44244

View File

@ -297,6 +297,9 @@ Models
* :meth:`.QuerySet.raw` now supports models with a * :meth:`.QuerySet.raw` now supports models with a
:class:`~django.db.models.CompositePrimaryKey`. :class:`~django.db.models.CompositePrimaryKey`.
* Subqueries returning a :class:`~django.db.models.CompositePrimaryKey` can now
be used as the target of lookups other than ``__in``, such as ``__exact``.
* :class:`~django.db.models.JSONField` now supports * :class:`~django.db.models.JSONField` now supports
:ref:`negative array indexing <key-index-and-path-transforms>` on SQLite. :ref:`negative array indexing <key-index-and-path-transforms>` on SQLite.