Merge branch '4.3' into 4.4

* 4.3:
  [FrameworkBundle] Fixed suggested package for missing server:dump command
  Add BC break note to UPGRADE-4.2.md
This commit is contained in:
Nicolas Grekas 2019-09-06 16:33:21 +02:00
commit a86b8cfd1a
2 changed files with 2 additions and 1 deletions

View File

@ -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
--------------

View File

@ -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'],
],
];