summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-01-28 14:12:56 +0100
committerClaude Paroz <claude@2xlibre.net>2013-01-28 22:10:50 +0100
commit4f16376274a4e52074722c615fccef5fac5f009a (patch)
tree06758241da714e07d2cda1a97c7c6f12720e352a /docs/releases
parentc47fa3b4814240bb47342a4446d40ea83bd3ed19 (diff)
Added HTML5 email input type
Refs #16630.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/1.6.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt
index 29ecad3e9f..03341e586b 100644
--- a/docs/releases/1.6.txt
+++ b/docs/releases/1.6.txt
@@ -31,6 +31,9 @@ Minor features
* Added :meth:`~django.db.models.query.QuerySet.earliest` for symmetry with
:meth:`~django.db.models.query.QuerySet.latest`.
+* The default widgets for :class:`~django.forms.EmailField` use
+ the new type attribute available in HTML5 (type='email').
+
Backwards incompatible changes in 1.6
=====================================
@@ -39,6 +42,10 @@ Backwards incompatible changes in 1.6
:meth:`~django.db.models.query.QuerySet.none` has been called:
``isinstance(qs.none(), EmptyQuerySet)``
+* If your CSS/Javascript code used to access HTML input widgets by type, you
+ should review it as ``type='text'`` widgets might be now output as
+ ``type='email'`` depending on their corresponding field type.
+
.. warning::
In addition to the changes outlined in this section, be sure to review the