summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-03-01 08:09:58 +0100
committerGitHub <noreply@github.com>2022-03-01 08:09:58 +0100
commit445b075def2c037b971518963b70ce13df5e88a2 (patch)
treeb0031d52abd1e70d4bd360e41152476d2619ccbd /docs
parent119f227aa62885f12cd7dd2558a62148d02adbb4 (diff)
Fixed #33547 -- Fixed error when rendering invalid inlines with readonly fields in admin.
Regression in de95c826673be9ea519acc86fd898631d1a11356. Thanks David Glenck for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.0.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.0.3.txt b/docs/releases/4.0.3.txt
index 17e9f65074..415e00d80f 100644
--- a/docs/releases/4.0.3.txt
+++ b/docs/releases/4.0.3.txt
@@ -15,3 +15,7 @@ Bugfixes
* Prevented, following a regression in Django 4.0.1, :djadmin:`makemigrations`
from generating infinite migrations for a model with ``ManyToManyField`` to
a lowercased swappable model such as ``'auth.user'`` (:ticket:`33515`).
+
+* Fixed a regression in Django 4.0 that caused a crash when rendering invalid
+ inlines with :attr:`~django.contrib.admin.ModelAdmin.readonly_fields` in the
+ admin (:ticket:`33547`).