diff options
| author | Jacob Walls <jacobtylerwalls@gmail.com> | 2022-01-01 11:56:10 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-01-11 12:22:49 +0100 |
| commit | dc9deea8e85641695e489e43ed5d5638134c15c7 (patch) | |
| tree | 887f578388c6a2627cc755e8de868ec498c6dc79 /docs | |
| parent | b111b15c12bb89c49006ea13d20435d2022db23a (diff) | |
Fixed #11715 -- Changed default value of ModelAdmin.actions/inlines to empty tuples.
This clarifies the intended pattern of overwriting the default value
rather than mutating it.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/4.1.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt index fa1c05bc80..e3bc02f226 100644 --- a/docs/releases/4.1.txt +++ b/docs/releases/4.1.txt @@ -341,6 +341,10 @@ Miscellaneous ``request.META['CSRF_COOKIE']`` for storing the unmasked CSRF secret rather than a masked version. This is an undocumented, private API. +* The :attr:`.ModelAdmin.actions` and + :attr:`~django.contrib.admin.ModelAdmin.inlines` attributes now default to an + empty tuple rather than an empty list to discourage unintended mutation. + .. _deprecated-features-4.1: Features deprecated in 4.1 |
