diff --git a/UPGRADE-4.2.md b/UPGRADE-4.2.md index 3b1f238fa6..c1bb03f5ae 100644 --- a/UPGRADE-4.2.md +++ b/UPGRADE-4.2.md @@ -343,6 +343,7 @@ Security * `SimpleAuthenticatorInterface`, `SimpleFormAuthenticatorInterface`, `SimplePreAuthenticatorInterface`, `SimpleAuthenticationProvider`, `SimpleAuthenticationHandler`, `SimpleFormAuthenticationListener` and `SimplePreAuthenticationListener` have been deprecated. Use Guard instead. + * **BC break note**: Upgrade to this version will log out all logged in users. See bug #33473. SecurityBundle -------------- diff --git a/src/Symfony/Bundle/FrameworkBundle/EventListener/SuggestMissingPackageSubscriber.php b/src/Symfony/Bundle/FrameworkBundle/EventListener/SuggestMissingPackageSubscriber.php index 692a878a9d..231329c0bf 100644 --- a/src/Symfony/Bundle/FrameworkBundle/EventListener/SuggestMissingPackageSubscriber.php +++ b/src/Symfony/Bundle/FrameworkBundle/EventListener/SuggestMissingPackageSubscriber.php @@ -39,7 +39,7 @@ final class SuggestMissingPackageSubscriber implements EventSubscriberInterface '_default' => ['MakerBundle', 'symfony/maker-bundle --dev'], ], 'server' => [ - 'dump' => ['VarDumper Component', 'symfony/var-dumper --dev'], + 'dump' => ['Debug Bundle', 'symfony/debug-bundle --dev'], '_default' => ['WebServerBundle', 'symfony/web-server-bundle --dev'], ], ];