[Security] added more info about the BCrypt change (refs #7853)

This commit is contained in:
Fabien Potencier 2013-04-26 11:39:57 +02:00
parent a1031f6422
commit d59ffc9aa2
2 changed files with 2 additions and 2 deletions

View File

@ -4,13 +4,11 @@ CHANGELOG
2.3.0
-----
* [BC BREAK] the BCrypt encoder constructor signature has changed (the first argument was removed)
* added RequestContext::getQueryString()
2.2.0
-----
* Added BCrypt password encoder
* [DEPRECATION] Several route settings have been renamed (the old ones will be removed in 3.0):
* The `pattern` setting for a route has been deprecated in favor of `path`

View File

@ -4,6 +4,8 @@ CHANGELOG
2.3.0
-----
* [BC BREAK] the BCrypt encoder constructor signature has changed (the first argument was removed)
To use the BCrypt encoder, you now need PHP 5.5 or "ircmaxell/password-compat" as a composer dependency
* [BC BREAK] return 401 instead of 500 when using use_forward during for form authentication
* added a `require_previous_session` option to `AbstractAuthenticationListener`