summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-05-24 14:03:07 -0400
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-06-03 17:46:59 +0200
commit2bf4c5b9eaaf0a36cb0fb6c060625a5fb2fcf6c9 (patch)
treea6b0d7b15498790c89ac7ec00c727f2d6ff2917d /docs
parent37e5cc6d89b4653f05a1a00af2eb2187c907c935 (diff)
[5.2.x] Fixed #36416 -- Made QuerySet.in_bulk() account for composite pks in id_list.
Backport of 26313bc21932d0d3af278ab387549d63b1f64575 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.2.2.txt b/docs/releases/5.2.2.txt
index 5647c0cc07..3870a3efa4 100644
--- a/docs/releases/5.2.2.txt
+++ b/docs/releases/5.2.2.txt
@@ -34,3 +34,7 @@ Bugfixes
* Fixed a regression in Django 5.2 where admin's ``filter_horizontal`` buttons
lacked ``type="button"``, causing them to intercept form submission when
pressing the Enter key (:ticket:`36423`).
+
+* Fixed a bug in Django 5.2 where calling ``QuerySet.in_bulk()`` with an
+ ``id_list`` argument on models with a ``CompositePrimaryKey`` failed to
+ observe database parameter limits (:ticket:`36416`).