8000 [Security][LoginLink] remove experimental · symfony/symfony@f2842f2 · GitHub
[go: up one dir, main page]

Skip to content

Commit f2842f2

Browse files
committed
[Security][LoginLink] remove experimental
1 parent 02704e9 commit f2842f2

File tree

12 files changed

+2
-11
lines changed

12 files changed

+2
-11
lines changed

src/Symfony/Bundle/SecurityBundle/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
5.3
55
---
66

7+
* Login Link functionality is no longer experimental
78
* Add `required_badges` firewall config option
89
* [BC break] Add `login_throttling.lock_factory` setting defaulting to `null` (instead of `lock.factory`)
910
* Add a `login_throttling.interval` (in `security.firewalls`) option to change the default throttling interval.

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/LoginLinkFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
/**
2626
* @internal
27-
* @experimental in 5.3
2827
*/
2928
class LoginLinkFactory extends AbstractFactory implements AuthenticatorFactoryInterface
3029
{

src/Symfony/Component/Security/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
5.3
55
---
66

7+
* Login Link functionality is no longer experimental
78
* Add `RememberMeConditionsListener` to check if remember me is requested and supported, and set priority of `RememberMeListener` to -63
89
* Add `RememberMeHandlerInterface` and implementations, used as a replacement of `RememberMeServicesInterface` when using the AuthenticatorManager
910
* Add `TokenDeauthenticatedEvent` that is dispatched when the current security token is deauthenticated

src/Symfony/Component/Security/Http/Authenticator/LoginLinkAuthenticator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
/**
3030
* @author Ryan Weaver <ryan@symfonycasts.com>
31-
* @experimental in 5.3
3231
*/
3332
final class LoginLinkAuthenticator extends AbstractAuthenticator implements InteractiveAuthenticatorInterface
3433
{

src/Symfony/Component/Security/Http/LoginLink/Exception/ExpiredLoginLinkException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
/**
1717
* @author Ryan Weaver <ryan@symfonycasts.com>
18-
* @experimental in 5.3
1918
*/
2019
class ExpiredLoginLinkException extends ExpiredSignatureException implements InvalidLoginLinkExceptionInterface
2120
{

src/Symfony/Component/Security/Http/LoginLink/Exception/InvalidLoginLinkAuthenticationException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* Thrown when a login link is invalid.
1818
*
1919
* @author Ryan Weaver <ryan@symfonycasts.com>
20-
* @experimental in 5.3
2120
*/
2221
class InvalidLoginLinkAuthenticationException extends AuthenticationException
2322
{

src/Symfony/Component/Security/Http/LoginLink/Exception/InvalidLoginLinkException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
/**
1515
* @author Ryan Weaver <ryan@symfonycasts.com>
16-
* @experimental in 5.3
1716
*/
1817
class InvalidLoginLinkException extends \RuntimeException implements InvalidLoginLinkExceptionInterface
1918
{

src/Symfony/Component/Security/Http/LoginLink/Exception/InvalidLoginLinkExceptionInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
/**
1515
* @author Ryan Weaver <ryan@symfonycasts.com>
16-
* @experimental in 5.3
1716
*/
1817
interface InvalidLoginLinkExceptionInterface extends \Throwable
1918
{

src/Symfony/Component/Security/Http/LoginLink/LoginLinkDetails.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
/**
1515
* @author Ryan Weaver <ryan@symfonycasts.com>
16-
* @experimental in 5.3
1716
*/
1817
class LoginLinkDetails
1918
{

src/Symfony/Component/Security/Http/LoginLink/LoginLinkHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
/**
2727
* @author Ryan Weaver <ryan@symfonycasts.com>
28-
* @experimental in 5.3
2928
*/
3029
final class LoginLinkHandler implements LoginLinkHandlerInterface
3130
{

src/Symfony/Component/Security/Http/LoginLink/LoginLinkHandlerInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* A class that is able to create and handle "magic" login links.
1919
*
2020
* @author Ryan Weaver <ryan@symfonycasts.com>
21-
* @experimental in 5.3
2221
*/
2322
interface LoginLinkHandlerInterface
2423
{

src/Symfony/Component/Security/Http/LoginLink/LoginLinkNotification.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
* emails/SMS using the Notifier component.
2626
*
2727
* @author Wouter de Jong <wouter@wouterj.nl>
28-
*
29-
* @experimental in 5.3
3028
*/
3129
class LoginLinkNotification extends Notification implements EmailNotificationInterface, SmsNotificationInterface
3230
{

0 commit comments

Comments
 (0)
0