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 20:53:31 +0100
commitee4a19053a32d41cdd79e087b1968980804ce658 (patch)
tree579de310d7f014362e1a38695d6fd7b06ad86b10 /docs
parent664c98f1f8c63a932a9c767a7364a6a1826799bb (diff)
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.
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.