summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2389ac3..82c4312 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
CHANGELOG
=========
+2.2.0
+-----
+
+ * `Symfony\Component\Security\Http\Firewall` and
+ `Symfony\Component\Security\Http\RememberMe\ResponseListener` now
+ implements EventSubscriberInterface
+ * added secure random number generator
+ * added PBKDF2 Password encoder
+ * added BCrypt password encoder
+
2.1.0
-----
@@ -20,3 +30,13 @@ CHANGELOG
* `ObjectIdentity::fromDomainObject`, `UserSecurityIdentity::fromAccount` and
`UserSecurityIdentity::fromToken` now return correct identities for proxies
objects (e.g. Doctrine proxies)
+ * [BC BREAK] moved the default authentication success and failure handling to
+ separate classes. The order of arguments in the constructor of the
+ `AbstractAuthenticationListener` has changed.
+ * [BC BREAK] moved the default logout success handling to a separate class. The
+ order of arguments in the constructor of `LogoutListener` has changed.
+ * [BC BREAK] The constructor of `AuthenticationException` and all child
+ classes now matches the constructor of `\Exception`. The extra information
+ getters and setters are removed. There are now dedicated getters/setters for
+ token (`AuthenticationException'), user (`AccountStatusException`) and
+ username (`UsernameNotFoundException`).