From e94b5e4cee5d2129d0884ab24d20dd10a4cdda7e Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Thu, 13 Apr 2017 22:25:32 +0200 Subject: [PATCH] Flag the json_login listener as experimental --- .../DependencyInjection/Security/Factory/JsonLoginFactory.php | 2 ++ src/Symfony/Component/Security/CHANGELOG.md | 1 + .../Firewall/UsernamePasswordJsonAuthenticationListener.php | 2 ++ 3 files changed, 5 insertions(+) diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/JsonLoginFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/JsonLoginFactory.php index c1d3bcad34cfc..f7da4aa4a65cc 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/JsonLoginFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/JsonLoginFactory.php @@ -19,6 +19,8 @@ * JsonLoginFactory creates services for JSON login authentication. * * @author Kévin Dunglas + * + * @experimental in version 3.3 */ class JsonLoginFactory extends AbstractFactory { diff --git a/src/Symfony/Component/Security/CHANGELOG.md b/src/Symfony/Component/Security/CHANGELOG.md index afc48f927d3a8..69cdd285282fa 100644 --- a/src/Symfony/Component/Security/CHANGELOG.md +++ b/src/Symfony/Component/Security/CHANGELOG.md @@ -6,6 +6,7 @@ CHANGELOG * deprecated `AccessDecisionManager::setVoters()` in favor of passing the voters to the constructor. + * [EXPERIMENTAL] added a `json_login` listener for stateless authentication 3.2.0 ----- diff --git a/src/Symfony/Component/Security/Http/Firewall/UsernamePasswordJsonAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/UsernamePasswordJsonAuthenticationListener.php index f66bf9656342b..2cfd4d9d236e2 100644 --- a/src/Symfony/Component/Security/Http/Firewall/UsernamePasswordJsonAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/UsernamePasswordJsonAuthenticationListener.php @@ -37,6 +37,8 @@ * an authentication via a JSON document composed of a username and a password. * * @author Kévin Dunglas + * + * @experimental in version 3.3 */ class UsernamePasswordJsonAuthenticationListener implements ListenerInterface {