summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2019-11-21 20:53:31 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-11-21 21:06:07 +0100
commit947f8e3485b1406d18ea062fd275c083d7ffbed5 (patch)
tree1be3a4d282bd237120f11192c5726afe5584c28d /docs
parent6e3ef9841313efa7ace79cde519c89965206cd4b (diff)
[3.0.x] Fixed #31012 -- Reverted "Fixed #29056 -- Fixed HTML5 validation of required SelectDateWidget."
This reverts commit f038214d917c982613f5a15db8dfe325b1f7479b. The initial issue was incorrect. Django 2.2, and before, did not generate invalid HTML as reported. With f03821 in place invalid HTML was generated. Thanks to Kevin Brown for follow-up report and investigation. Backport of ee4a19053a32d41cdd79e087b1968980804ce658 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt
index d3656d6883..616b708389 100644
--- a/docs/releases/3.0.txt
+++ b/docs/releases/3.0.txt
@@ -524,10 +524,6 @@ Miscellaneous
* Support for ``pywatchman`` < 1.2.0 is removed.
-* HTML rendered by :class:`~django.forms.SelectDateWidget` for required fields
- now have the ``placeholder`` attribute, which, mainly, may require some
- adjustments in tests that compare HTML.
-
* :func:`~django.utils.http.urlencode` now encodes iterable values as they are
when ``doseq=False``, rather than iterating them, bringing it into line with
the standard library :func:`urllib.parse.urlencode` function.