DonCallisto 2018-05-30 11:57:41 +02:00
parent 92e3023195
commit c09ca94a28
3 changed files with 8 additions and 0 deletions

View File

@ -344,6 +344,9 @@ Security
* The `GuardAuthenticatorInterface` has been deprecated and will be removed in 4.0.
Use `AuthenticatorInterface` instead.
* When extending `AbstractGuardAuthenticator` it's deprecated to return `null` from `getCredentials()`.
Return `false` from `supports()` if no credentials available.
SecurityBundle
--------------

View File

@ -758,6 +758,9 @@ Security
* The `GuardAuthenticatorInterface` interface has been removed.
Use `AuthenticatorInterface` instead.
* When extending `AbstractGuardAuthenticator` getCredentials() cannot return
`null` anymore, return false from `supports()` if no credentials available instead.
SecurityBundle
--------------

View File

@ -16,6 +16,8 @@ CHANGELOG
* deprecated HTTP digest authentication
* Added a new password encoder for the Argon2i hashing algorithm
* deprecated `GuardAuthenticatorInterface` in favor of `AuthenticatorInterface`
* deprecated to return `null` from `getCredentials()` in classes that extend
`AbstractGuardAuthenticator`. Return `false` from `supports()` instead.
3.3.0
-----