1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #32947 -- Fixed hash() crash on reverse M2M relation when through_fields is a list.

Regression in c32d8f33d8.
This commit is contained in:
Tom Wojcik
2021-07-20 12:44:13 +02:00
committed by Mariusz Felisiak
parent 00ea883ef5
commit 20226fcd46
6 changed files with 49 additions and 5 deletions

View File

@@ -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`).