summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-09 06:08:48 +0200
committerGitHub <noreply@github.com>2022-08-09 06:08:48 +0200
commit63884829acd207404f2a5c3cc1d6b4cd0a822b70 (patch)
tree36bbc8a3fc155cd2f103589d9d260e0ba214788d /docs
parentc614e811f80ae5ce4e8f1461f54f0600707cf0e6 (diff)
Fixed #33902 -- Fixed Meta.constraints validation crash with F() expressions.
Thanks Adam ZahradnĂ­k for the report. Bug in 667105877e6723c6985399803a364848891513cc.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.1.1.txt b/docs/releases/4.1.1.txt
index 2e61e3877d..dbac1ff926 100644
--- a/docs/releases/4.1.1.txt
+++ b/docs/releases/4.1.1.txt
@@ -29,3 +29,6 @@ Bugfixes
* Fixed a regression in Django 4.1 that caused a migration crash on SQLite
3.35.5+ when removing an indexed field (:ticket:`33899`).
+
+* Fixed a bug in Django 4.1 that caused a crash of model validation on
+ ``UniqueConstraint()`` with field names in ``expressions`` (:ticket:`33902`).