From 1633cb30bdafe96337d021b8fd357035322094d5 Mon Sep 17 00:00:00 2001 From: "marc.weistroff" Date: Wed, 13 Jul 2011 08:41:17 +0200 Subject: [PATCH 1/4] [Security] Moved EntityUserProvider to Doctrine Bridge --- .../Core => Bridge/Doctrine/Security}/User/EntityUserProvider.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/Symfony/{Component/Security/Core => Bridge/Doctrine/Security}/User/EntityUserProvider.php (100%) diff --git a/src/Symfony/Component/Security/Core/User/EntityUserProvider.php b/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php similarity index 100% rename from src/Symfony/Component/Security/Core/User/EntityUserProvider.php rename to src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php From 26e96c4ab0075c5017e98a3cdf04693e0214d5ae Mon Sep 17 00:00:00 2001 From: "marc.weistroff" Date: Wed, 13 Jul 2011 08:44:37 +0200 Subject: [PATCH 2/4] [DoctrineBridge] Changed namespace of EntityUserProvider[B --- .../Bridge/Doctrine/Security/User/EntityUserProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php b/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php index cc6f6eddb0..b84097d905 100644 --- a/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php +++ b/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Core\User; +namespace Symfony\Bridge\Doctrine\Security\User; use Doctrine\ORM\EntityManager; use Symfony\Component\Security\Core\Exception\UnsupportedUserException; From b33e1bae296cc152388db99957a14d90fdb812dd Mon Sep 17 00:00:00 2001 From: "marc.weistroff" Date: Wed, 13 Jul 2011 08:46:21 +0200 Subject: [PATCH 3/4] [SecurityBundle] Reported namespace change of EntityUserProvider --- src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml b/src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml index 3cfbee6ec4..1b5a90e8ee 100644 --- a/src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml +++ b/src/Symfony/Bundle/SecurityBundle/Resources/config/security.xml @@ -13,7 +13,7 @@ Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder Symfony\Component\Security\Core\Encoder\PlaintextPasswordEncoder - Symfony\Component\Security\Core\User\EntityUserProvider + Symfony\Bridge\Doctrine\Security\User\EntityUserProvider Symfony\Component\Security\Core\User\InMemoryUserProvider Symfony\Component\Security\Core\User\User Symfony\Component\Security\Core\User\ChainUserProvider From 66c698aa8c1284ec10eab88d54b39be75ea99142 Mon Sep 17 00:00:00 2001 From: "marc.weistroff" Date: Wed, 13 Jul 2011 10:16:54 +0200 Subject: [PATCH 4/4] Updated update.md --- UPDATE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UPDATE.md b/UPDATE.md index 4e63372d75..4a1dc5b532 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -9,6 +9,10 @@ timeline closely anyway. RC4 to RC5 ---------- +* `EntityUserProvider` class has been moved and FQCN changed from + `Symfony\Component\Security\Core\User\EntityUserProvider` to + `Symfony\Bridge\Doctrine\Security\User\EntityUserProvider`. + * Removed the guesser for the Choice constraint as the constraint only knows about the valid keys, and not their values.