summaryrefslogtreecommitdiff
path: root/docs/ref/validators.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-12 16:27:30 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:11 -0400
commit54848a96dd4a196e81f3d71c61caf84ea8b49f4e (patch)
tree0fe3e51fc3f783adc69c46bb0313514f207f71ab /docs/ref/validators.txt
parent48e7787db599b0103daf70f0ff4968d90b8540aa (diff)
Removed versionadded/changed annotations for 1.8.
Diffstat (limited to 'docs/ref/validators.txt')
-rw-r--r--docs/ref/validators.txt21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/ref/validators.txt b/docs/ref/validators.txt
index 9bbcf9bcbc..cec54e8d87 100644
--- a/docs/ref/validators.txt
+++ b/docs/ref/validators.txt
@@ -163,11 +163,6 @@ to, or in lieu of custom ``field.clean()`` methods.
.. _valid URI schemes: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
- .. versionchanged:: 1.8
-
- Support for IPv6 addresses, unicode domains, and URLs containing
- authentication data was added.
-
``validate_email``
------------------
@@ -242,10 +237,6 @@ to, or in lieu of custom ``field.clean()`` methods.
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
``'max_value'`` if ``value`` is greater than ``max_value``.
- .. versionchanged:: 1.8
-
- The ``message`` parameter was added.
-
``MinValueValidator``
---------------------
@@ -254,10 +245,6 @@ to, or in lieu of custom ``field.clean()`` methods.
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
``'min_value'`` if ``value`` is less than ``min_value``.
- .. versionchanged:: 1.8
-
- The ``message`` parameter was added.
-
``MaxLengthValidator``
----------------------
@@ -266,10 +253,6 @@ to, or in lieu of custom ``field.clean()`` methods.
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
``'max_length'`` if the length of ``value`` is greater than ``max_length``.
- .. versionchanged:: 1.8
-
- The ``message`` parameter was added.
-
``MinLengthValidator``
----------------------
@@ -278,10 +261,6 @@ to, or in lieu of custom ``field.clean()`` methods.
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
``'min_length'`` if the length of ``value`` is less than ``min_length``.
- .. versionchanged:: 1.8
-
- The ``message`` parameter was added.
-
``DecimalValidator``
--------------------