summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-08-10 17:23:14 -0400
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-08-11 10:22:59 +0200
commiteed7f44244c90b78bf31f554cd8663f03b84e623 (patch)
treef4efb527975cc7dc345e937b23c8bd4878b56a94 /docs
parent181e3bd71c0f578a1214523be1f7969393d98892 (diff)
Refs #36210 -- Added release note for further subquery support for composite pks.
Follow-up to fd569dd45bf0746378faf7f65172497f21ed27f0.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt
index 6e213f890a..0c1a2c87eb 100644
--- a/docs/releases/6.0.txt
+++ b/docs/releases/6.0.txt
@@ -297,6 +297,9 @@ Models
* :meth:`.QuerySet.raw` now supports models with a
: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
:ref:`negative array indexing <key-index-and-path-transforms>` on SQLite.