[Security] added CHANGELOG

This commit is contained in:
Fabien Potencier 2012-04-26 22:30:56 +02:00
parent 4b604ad782
commit 6c0c38c718
2 changed files with 19 additions and 8 deletions

View File

@ -228,14 +228,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
* added method `guessPattern` to FormTypeGuesserInterface to guess which pattern to use in the HTML5 attribute "pattern"
* deprecated method `guessMinLength` in favor of `guessPattern`
### Security
* after login, the user is now redirected to `default_target_path` if `use_referer` is true and the referrer is the `login_path`.
* added a way to remove a token from a session
* [BC BREAK] changed `MutableAclInterface::setParentAcl` to accept `null`, review your implementation to reflect this change.
* `ObjectIdentity::fromDomainObject`, `UserSecurityIdentity::fromAccount` and `UserSecurityIdentity::fromToken` now return
correct identities for proxies objects (e.g. Doctrine proxies)
### Validator
* added support for `ctype_*` assertions in `TypeValidator`

View File

@ -0,0 +1,19 @@
CHANGELOG
=========
2.1.0
-----
* allow switching to the user that is already impersonated
* added support for the remember_me parameter in the query
* added AccessMapInterface
* [BC BREAK] moved user comparison logic out of UserInterface
* made the logout path check configurable
* after login, the user is now redirected to `default_target_path` if
`use_referer` is true and the referrer is the `login_path`.
* added a way to remove a token from a session
* [BC BREAK] changed `MutableAclInterface::setParentAcl` to accept `null`,
review your implementation to reflect this change.
* `ObjectIdentity::fromDomainObject`, `UserSecurityIdentity::fromAccount` and
`UserSecurityIdentity::fromToken` now return correct identities for proxies
objects (e.g. Doctrine proxies)