Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 1.58 KB

UPGRADE-4.4.md

File metadata and controls

66 lines (46 loc) · 1.58 KB

UPGRADE FROM 4.3 to 4.4

HttpKernel

  • The DebugHandlersListener class has been marked as final

DependencyInjection

  • Deprecated support for short factories and short configurators in Yaml

    Before:

    services:
      my_service:
        factory: factory_service:method

    After:

    services:
      my_service:
        factory: ['@factory_service', method]

HttpClient

  • Added method cancel() to ResponseInterface

FrameworkBundle

  • The $parser argument of ControllerResolver::__construct() and DelegatingLoader::__construct() has been deprecated.
  • The ControllerResolver and DelegatingLoader classes have been marked as final.
  • The controller_name_converter and resolve_controller_name_subscriber services have been deprecated.

Messenger

  • Deprecated passing a ContainerInterface instance as first argument of the ConsumeMessagesCommand constructor, pass a RoutableMessageBus instance instead.

FrameworkBundle

  • Deprecated support for templating engine in TemplateController, use Twig instead

MonologBridge

  • The RouteProcessor has been marked final.

Security

  • Implementations of PasswordEncoderInterface and UserPasswordEncoderInterface should add a new needsRehash() method

TwigBridge

  • Deprecated to pass $rootDir and $fileLinkFormatter as 5th and 6th argument respectively to the DebugCommand::__construct() method, swap the variables position.