Updated UPGRADED file to reflect changes merged in e056480ab2

This commit is contained in:
Bernhard Schussek 2012-01-17 00:52:13 +01:00
parent e056480ab2
commit 43293f4bc5
1 changed files with 9 additions and 0 deletions

View File

@ -68,3 +68,12 @@ UPGRADE FROM 2.0 to 2.1
public function isEqualTo(UserInterface $user) { /* ... */ }
// ...
}
* Form children aren't automatically validated anymore. That means that you
explicitely need to set the `Valid` constraint in your model if you want to
validate associated objects.
If you don't want to set the `Valid` constraint, or if there is no reference
from the data of the parent form to the data of the child form, you can
enable BC behaviour by setting the option "cascade_validation" to `true` on
the parent form.