Skip to content

Commit

Permalink
minor #37973 [Security] Also mark the authenticator security system e…
Browse files Browse the repository at this point in the history
…xperimental in 5.2 (wouterj)

This PR was merged into the 5.2-dev branch.

Discussion
----------

[Security] Also mark the authenticator security system experimental in 5.2

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Commits
-------

176aef6 Also mark the authenticator security system experimental in 5.2
  • Loading branch information
fabpot committed Aug 28, 2020
2 parents ba98fd7 + 176aef6 commit 2c4e215
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* @author Ryan Weaver <ryan@symfonycasts.com>
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class AuthenticatorManager implements AuthenticatorManagerInterface, UserAuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in Symfony 5.1
* @experimental in 5.2
*/
interface AuthenticatorManagerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in Symfony 5.1
* @experimental in 5.2
*/
interface UserAuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class AbstractAuthenticator implements AuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class AbstractLoginFormAuthenticator extends AbstractAuthenticator implements AuthenticationEntryPointInterface, InteractiveAuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @author Fabien Potencier <fabien@symfony.com>
*
* @internal
* @experimental in Symfony 5.1
* @experimental in 5.2
*/
abstract class AbstractPreAuthenticatedAuthenticator implements InteractiveAuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface AuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class FormLoginAuthenticator extends AbstractLoginFormAuthenticator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class HttpBasicAuthenticator implements AuthenticatorInterface, AuthenticationEntryPointInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class JsonLoginAuthenticator implements InteractiveAuthenticatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @internal
* @experimental in 5.1
* @experimental in 5.2
*/
class AnonymousPassport implements PassportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in5.1
* @experimental in 5.2
*/
class CsrfTokenBadge implements BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class PasswordUpgradeBadge implements BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class PreAuthenticatedUserBadge implements BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class RememberMeBadge implements BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface CredentialsInterface extends BadgeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class CustomCredentials implements CredentialsInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class PasswordCredentials implements CredentialsInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class Passport implements UserPassportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface PassportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
trait PassportTrait
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class SelfValidatingPassport extends Passport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface UserPassportInterface extends PassportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Fabien Potencier <fabien@symfony.com>
*
* @final
* @experimental in Symfony 5.1
* @experimental in 5.2
*/
class X509Authenticator extends AbstractPreAuthenticatedAuthenticator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Wouter de Jong <wouter@driveamber.com>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class CheckCredentialsListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class CsrfProtectionListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class PasswordMigratingListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class RememberMeListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in 5.1
* @experimental in 5.2
*/
class UserCheckerListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class AuthenticatorManagerListener extends AbstractListener
{
Expand Down

0 comments on commit 2c4e215

Please sign in to comment.