summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohannes Maron <johannes@maron.family>2025-12-27 12:28:26 +0100
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-31 10:18:06 -0500
commitb7b5465b1c026dda7de646fca15ca1e97886d021 (patch)
treee1c0da5fd91ee9921b0488790021e071b2d40408 /docs
parent90daa655486c7fc69e9dad41c5e96f00339a3b9b (diff)
[6.0.x] Fixed #36829 -- Reverted value of ClearableFileInput.use_fieldset to True.
There was unresolved discussion regarding whether to set ClearableFileInput.use_fieldset to True or False when use_fieldset was introduced in Django 4.1, since the clear checkbox appears only sometimes. Although using <fieldset> is likely desirable, since the primary motivation in #35892 was just to improve markup in the admin, and a deprecation path was not provided for general form usage, future work is deferred to #36828. Regression in 4187da258fe212d494cb578a0bc2b52c4979ab95. Thanks Tim Graham, Antoliny, and David Smith for triage.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/6.0.1.txt b/docs/releases/6.0.1.txt
index 753d2c87ad..bb1dfab2c9 100644
--- a/docs/releases/6.0.1.txt
+++ b/docs/releases/6.0.1.txt
@@ -35,3 +35,7 @@ Bugfixes
* Fixed a regression in Django 6.0 where :func:`~django.urls.path` routes
defined using :func:`~django.utils.translation.gettext_lazy` failed to
resolve correctly (:ticket:`36796`).
+
+* Fixed a regression in Django 6.0 where the :attr:`.Widget.use_fieldset`
+ attribute of :class:`~django.forms.ClearableFileInput` was flipped
+ from ``False`` to ``True`` (:ticket:`36829`).