diff options
Diffstat (limited to 'docs/ref/validators.txt')
| -rw-r--r-- | docs/ref/validators.txt | 21 |
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`` -------------------- |
