From 89f7d77ea056ec9df9db4528d9f886bca1c22a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Stamenkovi=C4=87?= Date: Thu, 5 Sep 2019 16:16:42 +0200 Subject: [PATCH 1/2] Add BC break note to UPGRADE-4.2.md --- UPGRADE-4.2.md | 1 + 1 file changed, 1 insertion(+) 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 -------------- From 4017477eed15b2785e0cee722547a7ca3b1ac06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 5 Sep 2019 10:53:37 +0200 Subject: [PATCH 2/2] [FrameworkBundle] Fixed suggested package for missing server:dump command --- .../EventListener/SuggestMissingPackageSubscriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'], ], ];