Author: ubernostrum
Date: 2010-01-05 23:41:05 -0600 (Tue, 05 Jan 2010)
New Revision: 12111

Modified:
   django/trunk/docs/releases/1.2.txt
Log:
Add note about model validation to draft 1.2 release notes.

Modified: django/trunk/docs/releases/1.2.txt
===================================================================
--- django/trunk/docs/releases/1.2.txt  2010-01-06 00:55:54 UTC (rev 12110)
+++ django/trunk/docs/releases/1.2.txt  2010-01-06 05:41:05 UTC (rev 12111)
@@ -511,3 +511,14 @@
 You can now use the ``DJANGO_COLORS`` environment variable to modify
 or disable the colors used by ``django-admin.py`` to provide
 :ref:`syntax highlighting <syntax-coloring>`.
+
+Model validation
+----------------
+
+Model instances now have support for :ref:`validating their own data
+<validating-objects`, and both model and form fields now accept
+configurable lists of :ref:`validators <ref-validators>` specifying
+reusable, encapsulated validation behavior. Note, however, that
+validation must still be performed explicitly: simply invoking a model
+instance's ``save()`` method will not perform any validation of the
+instance's data.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.


Reply via email to