summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2025-05-08 14:02:35 -0400
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-05-12 12:33:07 +0100
commit8be0c0d6901669661fca578f474cd51cd284d35a (patch)
tree9a0caf26bfa3e6aa3d92064433186c8524f0a8bc /docs
parent42ab99309d347f617d60751c2e8d627fb2963049 (diff)
Fixed #36373 -- Fixed select_related() crash on foreign object for a composite pk.
Thanks Jacob Walls for the report and Sarah for the in-depth review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.2.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/5.2.2.txt b/docs/releases/5.2.2.txt
index 6d5f3bb61d..1af581e60c 100644
--- a/docs/releases/5.2.2.txt
+++ b/docs/releases/5.2.2.txt
@@ -9,4 +9,5 @@ Django 5.2.2 fixes several bugs in 5.2.1.
Bugfixes
========
-* ...
+* Fixed a crash when using ``select_related`` against a ``ForeignObject``
+ originating from a model with a ``CompositePrimaryKey`` (:ticket:`36373`).