summaryrefslogtreecommitdiff
path: root/docs
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:09:29 +0200
commit20226fcd461670334646f78a0c4d133e439b12b2 (patch)
treeac52a5128cbc6a54c3b1a8cc33f25ac778eb5241 /docs
parent00ea883ef56fb5e092cbe4a6f7ff2e7470886ac4 (diff)
Fixed #32947 -- Fixed hash() crash on reverse M2M relation when through_fields is a list.
Regression in c32d8f33d8e988a376e44997b8f3606d821f305e.
Diffstat (limited to 'docs')
-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`).