summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorTom Wojcik <me@tomwojcik.com>2021-07-20 12:44:13 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-26 06:41:31 +0200
commitb2f7b53facc7c3432b9d6173276f4baff02e71b7 (patch)
treeb4e2ccb7debace5d57d2bbba4e3884502023600e /docs/releases
parentde5a044cf49ba3d856388fe008f1e1a82a69b699 (diff)
[3.2.x] Fixed #32947 -- Fixed hash() crash on reverse M2M relation when through_fields is a list.
Regression in c32d8f33d8e988a376e44997b8f3606d821f305e. Backport of 20226fcd461670334646f78a0c4d133e439b12b2 from main
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/3.2.6.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.6.txt b/docs/releases/3.2.6.txt
index a44fa42181..5dba87a0dc 100644
--- a/docs/releases/3.2.6.txt
+++ b/docs/releases/3.2.6.txt
@@ -12,3 +12,7 @@ Bugfixes
* Fixed a regression in Django 3.2 that caused a crash validating ``"NaN"``
input with a ``forms.DecimalField`` when additional constraints, e.g.
``max_value``, were specified (:ticket:`32949`).
+
+* Fixed a bug in Django 3.2 where a system check would crash on a model with a
+ reverse many-to-many relation inherited from a parent class
+ (:ticket:`32947`).