- Removed
Client
, useAbstractBrowser
instead - Removed the possibility to extend
Response
by making it final. - Removed
Response::buildHeader()
- Removed
Response::getStatus()
, useResponse::getStatusCode()
instead - The
Client::submit()
method has a new$serverParameters
argument.
- Removed
CacheItem::getPreviousTags()
, useCacheItem::getMetadata()
instead. - Removed all PSR-16 adapters, use
Psr16Cache
orSymfony\Contracts\Cache\CacheInterface
implementations instead. - Removed
SimpleCacheAdapter
, usePsr16Adapter
instead. - Added argument
$prefix
toAdapterInterface::clear()
- Dropped support for constructing a
TreeBuilder
without passing root node information. - Added the
getChildNodeDefinitions()
method toParentNodeDefinitionInterface
. - The
Processor
class has been made final - Removed
FileLoaderLoadException
, useLoaderLoadException
instead. - Using environment variables with
cannotBeEmpty()
if the value is validated withvalidate()
will throw an exception. - Removed the
root()
method inTreeBuilder
, pass the root node information to the constructor instead - The
FilerLoader::import()
method has a new$exclude
argument.
-
Removed support for finding hidden commands using an abbreviation, use the full name instead
-
Removed the
setCrossingChar()
method in favor of thesetDefaultCrossingChar()
method inTableStyle
. -
Removed the
setHorizontalBorderChar()
method in favor of thesetDefaultCrossingChars()
method inTableStyle
. -
Removed the
getHorizontalBorderChar()
method in favor of thegetBorderChars()
method inTableStyle
. -
Removed the
setVerticalBorderChar()
method in favor of thesetVerticalBorderChars()
method inTableStyle
. -
Removed the
getVerticalBorderChar()
method in favor of thegetBorderChars()
method inTableStyle
. -
Removed support for returning
null
fromCommand::execute()
, return0
instead -
Renamed
Application::renderException()
andApplication::doRenderException()
torenderThrowable()
anddoRenderThrowable()
respectively. -
The
ProcessHelper::run()
method takes the command as an array of arguments.Before:
$processHelper->run($output, 'ls -l');
After:
$processHelper->run($output, array('ls', '-l')); // alternatively, when a shell wrapper is required $processHelper->run($output, Process::fromShellCommandline('ls -l'));
- Removed the component in favor of the
ErrorHandler
component - Replace uses of
Symfony\Component\Debug\Debug
bySymfony\Component\ErrorHandler\Debug
-
Removed the
TypedReference::canBeAutoregistered()
andTypedReference::getRequiringClass()
methods. -
Removed support for auto-discovered extension configuration class which does not implement
ConfigurationInterface
. -
Removed support for non-string default env() parameters
Before:
parameters: env(NAME): 1.5
After:
parameters: env(NAME): '1.5'
-
Removed 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]
- Removed the possibility to inject
ClassMetadataFactory
inDoctrineExtractor
, an instance ofEntityManagerInterface
should be injected instead - Passing an
IdReader
to theDoctrineChoiceLoader
when the query cannot be optimized with single id field will throw an exception, passnull
instead - Not passing an
IdReader
to theDoctrineChoiceLoader
when the query can be optimized with single id field will not apply any optimization - The
RegistryInterface
has been removed. - Added a new
getMetadataDriverClass
method inAbstractDoctrineExtension
to replace class parameters.
- The
Crawler::children()
method has a new$selector
argument.
- First parameter
$usePutenv
ofDotenv::__construct()
now default tofalse
.
- The
TraceableEventDispatcherInterface
has been removed. - The signature of the
EventDispatcherInterface::dispatch()
method has been updated todispatch($event, string $eventName = null)
- The
Event
class has been removed, useSymfony\Contracts\EventDispatcher\Event
instead
- The
Filesystem::isAbsolutePath()
method no longer supportsnull
in the$file
argument. - The
Filesystem::dumpFile()
method no longer supports arrays in the$content
argument. - The
Filesystem::appendToFile()
method no longer supports arrays in the$content
argument.
- The
Finder::sortByName()
method has a new$useNaturalSort
argument.
-
Removed support for using different values for the "model_timezone" and "view_timezone" options of the
TimeType
without configuring a reference date. -
Removed support for using
int
orfloat
as data for theNumberType
when theinput
option is set tostring
. -
Removed support for using the
format
option ofDateType
andDateTimeType
when thehtml5
option is enabled. -
Using names for buttons that do not start with a letter, a digit, or an underscore leads to an exception.
-
Using names for buttons that do not contain only letters, digits, underscores, hyphens, and colons leads to an exception.
-
Using the
date_format
,date_widget
, andtime_widget
options of theDateTimeType
when thewidget
option is set tosingle_text
is not supported anymore. -
The
getExtendedType()
method was removed from theFormTypeExtensionInterface
. It is replaced by the the staticgetExtendedTypes()
method which must return an iterable of extended types.Before:
class FooTypeExtension extends AbstractTypeExtension { public function getExtendedType() { return FormType::class; } // ... }
After:
class FooTypeExtension extends AbstractTypeExtension { public static function getExtendedTypes(): iterable { return array(FormType::class); } // ... }
-
The
scale
option was removed from theIntegerType
. -
The
$scale
argument of theIntegerToLocalizedStringTransformer
was removed. -
Calling
FormRenderer::searchAndRenderBlock
for fields which were already rendered throws an exception instead of returning empty strings:Before:
{% for field in fieldsWithPotentialDuplicates %} {{ form_widget(field) }} {% endfor %}
After:
{% for field in fieldsWithPotentialDuplicates if not field.rendered %} {{ form_widget(field) }} {% endfor %}
-
The
regions
option was removed from theTimezoneType
. -
Added support for PHPUnit 8. A
void
return-type was added to theFormIntegrationTestCase::setUp()
,TypeTestCase::setUp()
andTypeTestCase::tearDown()
methods.
-
Calling
WebTestCase::createClient()
while a kernel has been booted now throws an exception, ensure the kernel is shut down before calling the method -
Removed the
framework.templating
option, configure the Twig bundle instead. -
The project dir argument of the constructor of
AssetsInstallCommand
is required. -
Removed support for
bundle:controller:action
syntax to reference controllers. UseserviceOrFqcn::method
instead whereserviceOrFqcn
is either the service ID when using controllers as services or the FQCN of the controller.Before:
bundle_controller: path: / defaults: _controller: FrameworkBundle:Redirect:redirect
After:
bundle_controller: path: / defaults: _controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::redirectAction
-
Removed
Symfony\Bundle\FrameworkBundle\Controller\ControllerNameParser
. -
Warming up a router in
RouterCacheWarmer
that does not implement theWarmableInterface
is not supported anymore. -
The
RequestDataCollector
class has been removed. Use theSymfony\Component\HttpKernel\DataCollector\RequestDataCollector
class instead. -
Removed
Symfony\Bundle\FrameworkBundle\Controller\Controller
. UseSymfony\Bundle\FrameworkBundle\Controller\AbstractController
instead. -
Added support for the SameSite attribute for session cookies. It is highly recommended to set this setting (
framework.session.cookie_samesite
) tolax
for increased security against CSRF attacks. -
The
ContainerAwareCommand
class has been removed, useSymfony\Component\Console\Command\Command
with dependency injection instead. -
The
Templating\Helper\TranslatorHelper::transChoice()
method has been removed, use thetrans()
one instead with a%count%
parameter. -
Removed support for legacy translations directories
src/Resources/translations/
andsrc/Resources/<BundleName>/translations/
, usetranslations/
instead. -
Support for the legacy directory structure in
translation:update
anddebug:translation
commands has been removed. -
Removed the
Psr\SimpleCache\CacheInterface
/cache.app.simple
service, useSymfony\Contracts\Cache\CacheInterface
/cache.app
instead. -
Removed support for
templating
engine inTemplateController
, use Twig instead -
Removed
ResolveControllerNameSubscriber
. -
Removed
routing.loader.service
. -
Added support for PHPUnit 8. A
void
return-type was added to theKernelTestCase::tearDown()
andWebTestCase::tearDown()
method. -
Removed the
lock.store.flock
,lock.store.semaphore
,lock.store.memcached.abstract
andlock.store.redis.abstract
services. -
Removed the
router.cache_class_prefix
parameter.
- Added method
cancel()
toResponseInterface
- The
$parser
argument ofControllerResolver::__construct()
andDelegatingLoader::__construct()
has been removed. - The
ControllerResolver
andDelegatingLoader
classes have been madefinal
. - The
controller_name_converter
andresolve_controller_name_subscriber
services have been removed.
- The
$size
argument of theUploadedFile
constructor has been removed. - The
getClientSize()
method of theUploadedFile
class has been removed. - The
getSession()
method of theRequest
class throws an exception when session is null. - The default value of the
$secure
and$samesite
arguments of Cookie's constructor changed respectively from "false" to "null" and from "null" to "lax". - The
MimeTypeGuesserInterface
andExtensionGuesserInterface
interfaces have been removed, useSymfony\Component\Mime\MimeTypesInterface
instead. - The
MimeType
andMimeTypeExtensionGuesser
classes have been removed, useSymfony\Component\Mime\MimeTypes
instead. - The
FileBinaryMimeTypeGuesser
class has been removed, useSymfony\Component\Mime\FileBinaryMimeTypeGuesser
instead. - The
FileinfoMimeTypeGuesser
class has been removed, useSymfony\Component\Mime\FileinfoMimeTypeGuesser
instead. ApacheRequest
has been removed, use theRequest
class instead.- The third argument of the
HeaderBag::get()
method has been removed, use methodall()
instead. - Getting the container from a non-booted kernel is not possible anymore.
- [BC BREAK]
PdoSessionHandler
with MySQL changed the type of the lifetime column, make sure to runALTER TABLE sessions MODIFY sess_lifetime INTEGER UNSIGNED NOT NULL
to update your database.
-
Removed
Client
, useHttpKernelBrowser
instead -
The
Kernel::getRootDir()
and thekernel.root_dir
parameter have been removed -
The
KernelInterface::getName()
and thekernel.name
parameter have been removed -
Removed the first and second constructor argument of
ConfigDataCollector
-
Removed
ConfigDataCollector::getApplicationName()
-
Removed
ConfigDataCollector::getApplicationVersion()
-
Removed
FilterControllerArgumentsEvent
, useControllerArgumentsEvent
instead -
Removed
FilterControllerEvent
, useControllerEvent
instead -
Removed
FilterResponseEvent
, useResponseEvent
instead -
Removed
GetResponseEvent
, useRequestEvent
instead -
Removed
GetResponseForControllerResultEvent
, useViewEvent
instead -
Removed
GetResponseForExceptionEvent
, useExceptionEvent
instead -
Removed
PostResponseEvent
, useTerminateEvent
instead -
Removed
TranslatorListener
in favor ofLocaleAwareListener
-
The
DebugHandlersListener
class has been madefinal
-
Removed
SaveSessionListener
in favor ofAbstractSessionListener
-
Removed methods
ExceptionEvent::get/setException()
, useget/setThrowable()
instead -
Removed class
ExceptionListener
, useErrorListener
instead -
Added new Bundle directory convention consistent with standard skeletons:
└── MyBundle/ ├── config/ ├── public/ ├── src/ │ └── MyBundle.php ├── templates/ └── translations/
To make this work properly, it is necessary to change the root path of the bundle:
class MyBundle extends Bundle { public function getPath(): string { return \dirname(__DIR__); } }
As many bundles must be compatible with a range of Symfony versions, the current directory convention is not deprecated yet, but it will be in the future.
-
Removed the second and third argument of
KernelInterface::locateResource
-
Removed the second and third argument of
FileLocator::__construct
-
Removed loading resources from
%kernel.root_dir%/Resources
and%kernel.root_dir%
as fallback directories.
- Removed
ResourceBundle
namespace - Removed
Intl::getLanguageBundle()
, useLanguages
orScripts
instead - Removed
Intl::getCurrencyBundle()
, useCurrencies
instead - Removed
Intl::getLocaleBundle()
, useLocales
instead - Removed
Intl::getRegionBundle()
, useCountries
instead
- Removed
Symfony\Component\Lock\StoreInterface
in favor ofSymfony\Component\Lock\BlockingStoreInterface
andSymfony\Component\Lock\PersistingStoreInterface
. - Removed
Factory
, useLockFactory
instead
- The
LoggingMiddleware
class has been removed, pass a logger toSendMessageMiddleware
instead. - Passing a
ContainerInterface
instance as first argument of theConsumeMessagesCommand
constructor now throws as\TypeError
, pass aRoutableMessageBus
instance instead.
- The methods
DebugProcessor::getLogs()
,DebugProcessor::countErrors()
,Logger::getLogs()
andLogger::countErrors()
have a new$request
argument.
- The
RouteProcessor
class is final.
-
Removed the
Process::inheritEnvironmentVariables()
method: env variables are always inherited. -
Removed the
Process::setCommandline()
and thePhpProcess::setPhpBinary()
methods. -
Commands must be defined as arrays when creating a
Process
instance.Before:
$process = new Process('ls -l');
After:
$process = new Process(array('ls', '-l')); // alternatively, when a shell wrapper is required $process = Process::fromShellCommandline('ls -l');
- Removed support of passing
null
as 2nd argument ofPropertyAccessor::createCache()
method ($defaultLifetime
), pass0
instead.
- The
generator_base_class
,generator_cache_class
,matcher_base_class
, andmatcher_cache_class
router options have been removed. If you are using multiple Router instances and need separate caches for them, set a uniquecache_dir
per Router instance instead. Serializable
implementing methods forRoute
andCompiledRoute
are final. Instead of overwriting them, use__serialize
and__unserialize
as extension points which are forward compatible with the new serialization methods in PHP 7.4.- Removed
ServiceRouterLoader
andObjectRouteLoader
. - Service route loaders must be tagged with
routing.route_loader
. - The
RoutingConfigurator::import()
method has a new optional$exclude
argument.
-
Dropped support for passing more than one attribute to
AccessDecisionManager::decide()
andAuthorizationChecker::isGranted()
(and indirectly theis_granted()
Twig and ExpressionLanguage function):Before
if ($this->authorizationChecker->isGranted(['ROLE_USER', 'ROLE_ADMIN'])) { // ... }
After
if ($this->authorizationChecker->isGranted(new Expression("is_granted('ROLE_USER') or is_granted('ROLE_ADMIN')"))) {} // or: if ($this->authorizationChecker->isGranted('ROLE_USER') || $this->authorizationChecker->isGranted('ROLE_ADMIN') ) {}
-
The
LdapUserProvider
class has been removed, useSymfony\Component\Ldap\Security\LdapUserProvider
instead. -
Implementations of
PasswordEncoderInterface
andUserPasswordEncoderInterface
must have a newneedsRehash()
method -
The
Role
andSwitchUserRole
classes have been removed. -
The
getReachableRoles()
method of theRoleHierarchy
class has been removed. It has been replaced by the newgetReachableRoleNames()
method. -
The
getRoles()
method has been removed from theTokenInterface
. It has been replaced by the newgetRoleNames()
method. -
The
ContextListener::setLogoutOnUserChange()
method has been removed. -
The
Symfony\Component\Security\Core\User\AdvancedUserInterface
has been removed. -
The
ExpressionVoter::addExpressionLanguageProvider()
method has been removed. -
The
FirewallMapInterface::getListeners()
method must return an array of 3 elements, the 3rd one must be either aLogoutListener
instance ornull
. -
The
AuthenticationTrustResolver
constructor arguments have been removed. -
A user object that is not an instance of
UserInterface
cannot be accessed fromSecurity::getUser()
anymore and returnsnull
instead. -
SimpleAuthenticatorInterface
,SimpleFormAuthenticatorInterface
,SimplePreAuthenticatorInterface
,SimpleAuthenticationProvider
,SimpleAuthenticationHandler
,SimpleFormAuthenticationListener
andSimplePreAuthenticationListener
have been removed. Use Guard instead. -
The
ListenerInterface
has been removed, extendAbstractListener
instead. -
The
Firewall::handleRequest()
method has been removed, useFirewall::callListeners()
instead. -
\Serializable
interface has been removed fromAbstractToken
andAuthenticationException
, thusserialize()
andunserialize()
aren't available. Use__serialize()
and__unserialize()
instead.Before:
public function serialize() { return [$this->myLocalVar, parent::serialize()]; } public function unserialize($serialized) { [$this->myLocalVar, $parentSerialized] = unserialize($serialized); parent::unserialize($parentSerialized); }
After:
public function __serialize(): array { return [$this->myLocalVar, parent::__serialize()]; } public function __unserialize(array $data): void { [$this->myLocalVar, $parentData] = $data; parent::__unserialize($parentData); }
-
The
Argon2iPasswordEncoder
class has been removed, useSodiumPasswordEncoder
instead. -
The
BCryptPasswordEncoder
class has been removed, useNativePasswordEncoder
instead. -
Classes implementing the
TokenInterface
must implement the two new methods__serialize
and__unserialize
-
Implementations of
Guard\AuthenticatorInterface::checkCredentials()
must return a boolean value now. Please explicitly returnfalse
to indicate invalid credentials. -
Removed the
has_role()
function from security expressions, useis_granted()
instead.
- The
logout_on_user_change
firewall option has been removed. - The
switch_user.stateless
firewall option has been removed. - The
SecurityUserValueResolver
class has been removed. - Passing a
FirewallConfig
instance as 3rd argument to theFirewallContext
constructor now throws a\TypeError
, pass aLogoutListener
instance instead. - The
security.authentication.trust_resolver.anonymous_class
parameter has been removed. - The
security.authentication.trust_resolver.rememberme_class
parameter has been removed. - The
simple_form
andsimple_preauth
authentication listeners have been removed, use Guard instead. - The
SimpleFormFactory
andSimplePreAuthenticationFactory
classes have been removed, use Guard instead. - The names of the cookies configured in the
logout.delete_cookies
option are no longer normalized. If any of your cookie names has dashes they won't be changed to underscores. Before:my-cookie
deleted themy_cookie
cookie (with an underscore). After:my-cookie
deletes themy-cookie
cookie (with a dash). - Removed the
security.user.provider.in_memory.user
service.
-
The default value of the
CsvEncoder
"as_collection" option was changed totrue
. -
Individual encoders & normalizers options as constructor arguments were removed. Use the default context instead.
-
The following method and properties:
AbstractNormalizer::$circularReferenceLimit
AbstractNormalizer::$circularReferenceHandler
AbstractNormalizer::$callbacks
AbstractNormalizer::$ignoredAttributes
AbstractNormalizer::$camelizedAttributes
AbstractNormalizer::setCircularReferenceLimit()
AbstractNormalizer::setCircularReferenceHandler()
AbstractNormalizer::setCallbacks()
AbstractNormalizer::setIgnoredAttributes()
AbstractObjectNormalizer::$maxDepthHandler
AbstractObjectNormalizer::setMaxDepthHandler()
XmlEncoder::setRootNodeName()
XmlEncoder::getRootNodeName()
were removed, use the default context instead.
-
The
AbstractNormalizer::handleCircularReference()
method has two new$format
and$context
arguments. -
Removed support for instantiating a
DataUriNormalizer
with a default MIME type guesser when thesymfony/mime
component isn't installed.
- Removed the
XmlEncoder::TYPE_CASE_ATTRIBUTES
constant. UseXmlEncoder::TYPE_CAST_ATTRIBUTES
instead.
- Removed support for passing
null
as 1st ($id
) argument ofSection::get()
method, pass a valid child section identifier instead.
- Support for using
null
as the locale inTranslator
has been removed. - The
FileDumper::setBackup()
method has been removed. - The
TranslationWriter::disableBackup()
method has been removed. - The
TranslatorInterface
has been removed in favor ofSymfony\Contracts\Translation\TranslatorInterface
- The
MessageSelector
,Interval
andPluralizationRules
classes have been removed, useIdentityTranslator
instead - The
Translator::getFallbackLocales()
andTranslationDataCollector::getFallbackLocales()
method are now internal - The
Translator::transChoice()
method has been removed in favor of usingTranslator::trans()
with "%count%" as the parameter driving plurals - Removed support for implicit STDIN usage in the
lint:xliff
command, uselint:xliff -
(append a dash) instead to make it explicit.
- The default value (
false
) of thetwig.strict_variables
configuration option has been changed to%kernel.debug%
. - The
transchoice
tag and filter have been removed, use thetrans
ones instead with a%count%
parameter. - Removed support for legacy templates directories
src/Resources/views/
andsrc/Resources/<BundleName>/views/
, usetemplates/
andtemplates/bundles/<BundleName>/
instead. - The
twig.exception_controller
configuration option has been removed, useframework.error_controller
instead. - Removed
ExceptionController
,PreviewErrorController
classes and all built-in error templates
- Removed argument
$rootDir
from theDebugCommand::__construct()
method and the 5th argument must be an instance ofFileLinkFormatter
- Removed the
$requestStack
and$requestContext
arguments of theHttpFoundationExtension
, pass aSymfony\Component\HttpFoundation\UrlHelper
instance as the only argument instead - Removed support for implicit STDIN usage in the
lint:twig
command, uselint:twig -
(append a dash) instead to make it explicit.
- Removed support for non-string codes of a
ConstraintViolation
. Astring
type-hint was added to the constructor of theConstraintViolation
class and to theConstraintViolationBuilder::setCode()
method. - An
ExpressionLanguage
instance or null must be passed as the first argument ofExpressionValidator::__construct()
- The
checkMX
andcheckHost
options of theEmail
constraint were removed - The
Email::__construct()
'strict' property has been removed. Use 'mode'=>"strict" instead. - Calling
EmailValidator::__construct()
method with a boolean parameter has been removed, useEmailValidator("strict")
instead. - Removed the
checkDNS
anddnsMessage
options from theUrl
constraint. - The component is now decoupled from
symfony/translation
and usesSymfony\Contracts\Translation\TranslatorInterface
instead - The
ValidatorBuilderInterface
has been removed - Removed support for validating instances of
\DateTimeInterface
inDateTimeValidator
,DateValidator
andTimeValidator
. UseType
instead or remove the constraint if the underlying model is type hinted to\DateTimeInterface
already. - The
symfony/intl
component is now required for using theBic
,Country
,Currency
,Language
andLocale
constraints - The
egulias/email-validator
component is now required for using theEmail
constraint in strict mode - The
symfony/expression-language
component is now required for using theExpression
constraint - Changed the default value of
Length::$allowEmptyString
tofalse
and made it optional - Added support for PHPUnit 8. A
void
return-type was added to theConstraintValidatorTestCase::setUp()
andConstraintValidatorTestCase::tearDown()
methods. - The
Symfony\Component\Validator\Mapping\Cache\CacheInterface
and all its implementations have been removed. - The
ValidatorBuilder::setMetadataCache
has been removed, useValidatorBuilder::setMappingCache
instead.
- Removed the
ExceptionController::templateExists()
method - Removed the
TemplateManager::templateExists()
method
-
The
DefinitionBuilder::reset()
method has been removed, use theclear()
one instead. -
add
method has been removed useaddWorkflow
method inWorkflow\Registry
instead. -
SupportStrategyInterface
has been removed, useWorkflowSupportStrategyInterface
instead. -
ClassInstanceSupportStrategy
has been removed, useInstanceOfSupportStrategy
instead. -
WorkflowInterface::apply()
has a third argument:array $context = []
. -
MarkingStoreInterface::setMarking()
has a third argument:array $context = []
. -
Removed support of
initial_place
. Useinitial_marking
instead. -
MultipleStateMarkingStore
has been removed. UseMethodMarkingStore
instead. -
DefinitionBuilder::setInitialPlace()
has been removed, useDefinitionBuilder::setInitialPlaces()
instead.Before:
framework: workflows: type: workflow article: marking_store: type: multiple arguments: states
After:
framework: workflows: type: workflow article: marking_store: property: states
-
SingleStateMarkingStore
has been removed. UseMethodMarkingStore
instead.Before:
framework: workflows: article: marking_store: arguments: state
After:
framework: workflows: article: marking_store: property: state
-
Support for using a workflow with a single state marking is dropped. Use a state machine instead.
Before:
framework: workflows: article: type: workflow marking_store: type: single_state
After:
framework: workflows: article: type: state_machine
- The parser is now stricter and will throw a
ParseException
when a mapping is found inside a multi-line string. - Removed support for implicit STDIN usage in the
lint:yaml
command, uselint:yaml -
(append a dash) instead to make it explicit.
- Removed the
ExceptionController
class, useExceptionErrorController
instead.
- The bundle has been deprecated and can be installed separately. You may also use the Symfony Local Web Server instead.