diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-04-26 22:30:56 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-04-26 22:30:56 +0200 |
commit | cfcc7424c28dabf3501e48b78a2a6cebebce3ef0 (patch) | |
tree | 6c6884200e34aeac6fe8968f3065b63331a49a19 | |
parent | 477dfe3591444527bd840c1ba325085883c62841 (diff) | |
download | symfony-security-cfcc7424c28dabf3501e48b78a2a6cebebce3ef0.zip symfony-security-cfcc7424c28dabf3501e48b78a2a6cebebce3ef0.tar.gz symfony-security-cfcc7424c28dabf3501e48b78a2a6cebebce3ef0.tar.bz2 |
[Security] added CHANGELOG
-rw-r--r-- | CHANGELOG.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a555f1e --- /dev/null +++ b/CHANGELOG.md @@ -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) |