summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2025-02-17 13:45:31 -0500
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-02-18 11:44:46 +0100
commit6b8a6e1251e57b7bfee1ab6880171376a3a1a394 (patch)
tree0af31e19d5f6b28b5c41ba26d3582940a4a5b415 /docs
parentb0d497ada04bb6dccdfc2c4072744de391b7d3b7 (diff)
[5.2.x] Fixed #36197 -- Fixed improper many-to-many count() and exists() for non-pk to_field.
Regression in 66e47ac69a7e71cf32eee312d05668d8f1ba24bb. Thanks mfontana-elem for the report and Sarah for the tests. Backport of c3a23aa02faa1cf1d32e43d66858e793cd9ecac4 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.1.7.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/5.1.7.txt b/docs/releases/5.1.7.txt
index deda4f2f92..c32f8f5ae1 100644
--- a/docs/releases/5.1.7.txt
+++ b/docs/releases/5.1.7.txt
@@ -16,3 +16,8 @@ Bugfixes
* Fixed a bug in Django 5.1 where ``FileSystemStorage``, with
``allow_overwrite`` set to ``True``, did not truncate the overwritten file
content (:ticket:`36191`).
+
+* Fixed a regression in Django 5.1 where the ``count`` and ``exists`` methods
+ of ``ManyToManyField`` related managers would always return ``0`` and
+ ``False`` when the intermediary model back references used ``to_field``
+ (:ticket:`36197`).