Add upgrade for commit 0995b1f28b

This commit is contained in:
Michel Salib 2012-06-13 02:33:21 +03:00
parent 37550d23c6
commit be637b5c23
1 changed files with 16 additions and 0 deletions

View File

@ -143,6 +143,22 @@
* `MutableAclInterface::setParentAcl` now accepts `null`, review any
implementations of this interface to reflect this change.
* The `UserPassword` constraint has moved from the Security Bundle to the Security Component:
Before:
```
use Symfony\Bundle\SecurityBundle\Validator\Constraint\UserPassword;
use Symfony\Bundle\SecurityBundle\Validator\Constraint as SecurityAssert;
```
After:
```
use Symfony\Component\Security\Core\Validator\Constraint\UserPassword;
use Symfony\Component\Security\Core\Validator\Constraint as SecurityAssert;
```
### Form
#### BC Breaks in Form Types and Options