This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/UPGRADE-4.1.md

67 lines
2.2 KiB
Markdown
Raw Normal View History

UPGRADE FROM 4.0 to 4.1
=======================
Config
------
* Implementing `ParentNodeDefinitionInterface` without the `getChildNodeDefinitions()` method
2018-02-19 11:42:56 +00:00
is deprecated.
2017-10-01 21:31:12 +01:00
EventDispatcher
---------------
2018-02-19 11:42:56 +00:00
* The `TraceableEventDispatcherInterface` has been deprecated.
2017-10-01 21:31:12 +01:00
FrameworkBundle
---------------
2018-02-19 11:42:56 +00:00
* A `RouterInterface` that does not implement the `WarmableInterface` is deprecated.
* The `RequestDataCollector` class has been deprecated. Use the `Symfony\Component\HttpKernel\DataCollector\RequestDataCollector` class instead.
2017-12-12 19:03:06 +00:00
HttpFoundation
--------------
2018-02-19 11:42:56 +00:00
* Passing the file size to the constructor of the `UploadedFile` class is deprecated.
2017-12-12 19:03:06 +00:00
* The `getClientSize()` method of the `UploadedFile` class is deprecated. Use `getSize()` instead.
Security
--------
2018-02-19 11:42:56 +00:00
* The `ContextListener::setLogoutOnUserChange()` method is deprecated.
2017-12-11 09:34:00 +00:00
* Using the `AdvancedUserInterface` is now deprecated. To use the existing
functionality, create a custom user-checker based on the
2018-02-19 11:42:56 +00:00
`Symfony\Component\Security\Core\User\UserChecker`.
SecurityBundle
--------------
2018-02-19 11:42:56 +00:00
* The `logout_on_user_change` firewall option is deprecated.
* The `SecurityUserValueResolver` class is deprecated, use
`Symfony\Component\Security\Http\Controller\UserValueResolver` instead.
Translation
-----------
2018-02-19 11:42:56 +00:00
* The `FileDumper::setBackup()` method is deprecated.
* The `TranslationWriter::disableBackup()` method is deprecated.
TwigBundle
----------
* Deprecated relying on the default value (`false`) of the `twig.strict_variables` configuration option. You should use `%kernel.debug%` explicitly instead, which will be the new default in 5.0.
Validator
--------
2018-02-19 11:42:56 +00:00
* The `Email::__construct()` 'strict' property is deprecated. Use 'mode'=>"strict" instead.
* Calling `EmailValidator::__construct()` method with a boolean parameter is deprecated, use `EmailValidator("strict")` instead.
* Deprecated the `checkDNS` and `dnsMessage` options of the `Url` constraint.
Workflow
--------
* Deprecated the `add` method in favor of the `addWorkflow` method in `Workflow\Registry`.
* Deprecated `SupportStrategyInterface` in favor of `WorkflowSupportStrategyInterface`.
* Deprecated the class `ClassInstanceSupportStrategy` in favor of the class `InstanceOfSupportStrategy`.