diff --git a/docs/releases/1.2.txt b/docs/releases/1.2.txt index d66b79f9c5..008d3c5d9f 100644 --- a/docs/releases/1.2.txt +++ b/docs/releases/1.2.txt @@ -511,3 +511,14 @@ Customizable syntax highlighting 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 `. + +Model validation +---------------- + +Model instances now have support for :ref:`validating their own data +` 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.