From 0d9c1499901480ed52c08e1b94ecc80c7b55bc0e Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 31 Oct 2013 17:45:51 +0100 Subject: [PATCH] Fixed #21339 -- Documented removal of some form field error messages --- docs/releases/1.6.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index 424b7b1bdd..278a126fa6 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -830,6 +830,14 @@ Miscellaneous changes in 1.6 particularly affect :class:`~django.forms.DecimalField` and :class:`~django.forms.ModelMultipleChoiceField`. +* Some :attr:`~django.forms.Field.error_messages` for + :class:`~django.forms.IntegerField`, + :class:`~django.forms.EmailField`, + :class:`~django.forms.IPAddressField`, + :class:`~django.forms.GenericIPAddressField`, and + :class:`~django.forms.SlugField` have been suppressed because they + duplicated error messages already provided by validators tied to the fields. + * There have been changes in the way timeouts are handled in cache backends. Explicitly passing in ``timeout=None`` no longer results in using the default timeout. It will now set a non-expiring timeout. Passing 0 into the