summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2021-04-13 11:51:19 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-14 10:32:07 +0200
commit700356f93b9185cc05d9ed349108591a70e597b6 (patch)
tree3145c89d3ffead485b9c1f216aef3761ba0fe017 /docs
parentd6314c4c2ef647efe0d12450214fc5b4a4055290 (diff)
[3.2.x] Fixed #32635 -- Fixed system check crash for reverse o2o relations in CheckConstraint.check and UniqueConstraint.condition.
Regression in b7b7df5fbcf44e6598396905136cab5a19e9faff. Thanks Szymon Zmilczak for the report. Backport of a77c9a4229cfef790ec18001b2cd18bd9c4aedbc from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt
index 376efb0211..cc716782e5 100644
--- a/docs/releases/3.2.1.txt
+++ b/docs/releases/3.2.1.txt
@@ -22,3 +22,7 @@ Bugfixes
* Restored, following a regression in Django 3.2, displaying an exception
message on the technical 404 debug page (:ticket:`32637`).
+
+* Fixed a bug in Django 3.2 where a system check would crash on a reverse
+ one-to-one relationships in ``CheckConstraint.check`` or
+ ``UniqueConstraint.condition`` (:ticket:`32635`).