- Client HTTP user agent has been changed to 'Symfony BrowserKit' (was 'Symfony2 BrowserKit' before).
- The
doctrine/annotations
dependency has been removed; require it viacomposer require doctrine/annotations
if you are using annotations in your project - The
symfony/security-core
andsymfony/security-csrf
dependencies have been removed; require them viacomposer require symfony/security-core symfony/security-csrf
if you depend on them and don't already depend onsymfony/symfony
- The
symfony/templating
dependency has been removed; require it viacomposer require symfony/templating
if you depend on it and don't already depend onsymfony/symfony
- The
symfony/translation
dependency has been removed; require it viacomposer require symfony/translation
if you depend on it and don't already depend onsymfony/symfony
- The
symfony/asset
dependency has been removed; require it viacomposer require symfony/asset
if you depend on it and don't already depend onsymfony/symfony
- The
Resources/public/images/*
files have been removed. - The
Resources/public/css/*.css
files have been removed (they are now inlined in TwigBundle).
- Setting unknown style options is deprecated and will throw an exception in Symfony 4.0.
- Calling
get()
on aContainerBuilder
instance before compiling the container is deprecated and will throw an exception in Symfony 4.0.
- Passing a
ParserCacheInterface
instance to theExpressionLanguage
has been deprecated and will not be supported in Symfony 4.0. You should use theCacheItemPoolInterface
interface instead.
-
Calling
isValid()
on aForm
instance before submitting it is deprecated and will throw an exception in Symfony 4.0.Before:
if ($form->isValid()) { // ... }
After:
if ($form->isSubmitted() && $form->isValid()) { // ... }
- The service
serializer.mapping.cache.doctrine.apc
is deprecated. APCu should now be automatically used when available.
-
DataCollector::varToString()
is deprecated and will be removed in Symfony 4.0. Use thecloneVar()
method instead. -
Surrogate name in a
Surrogate-Capability
HTTP request header has been changed to 'symfony'.Before:
Surrogate-Capability: symfony2="ESI/1.0"
After:
Surrogate-Capability: symfony="ESI/1.0"
-
Extending the following methods of
Response
is deprecated (these methods will befinal
in 4.0):setDate
/getDate
setExpires
/getExpires
setLastModified
/getLastModified
setProtocolVersion
/getProtocolVersion
setStatusCode
/getStatusCode
setCharset
/getCharset
setPrivate
/setPublic
getAge
getMaxAge
/setMaxAge
setSharedMaxAge
getTtl
/setTtl
setClientTtl
getEtag
/setEtag
hasVary
/getVary
/setVary
isInvalid
/isSuccessful
/isRedirection
/isClientError
/isServerError
isOk
/isForbidden
/isNotFound
/isRedirect
/isEmpty
- Deprecated the possibility to inject the Form Twig Renderer into the form
extension. Inject it into the
TwigRendererEngine
instead.
-
Tests\Constraints\AbstractConstraintValidatorTest
has been deprecated in favor ofTest\ConstraintValidatorTestCase
.Before:
// ... use Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest; class MyCustomValidatorTest extends AbstractConstraintValidatorTest { // ... }
After:
// ... use Symfony\Component\Validator\Test\ConstraintValidatorTestCase; class MyCustomValidatorTest extends ConstraintValidatorTestCase { // ... }
-
Setting the strict option of the
Choice
Constraint tofalse
has been deprecated and the option will be changed totrue
as of 4.0.// ... use Symfony\Component\Validator\Constraints as Assert; class MyEntity { /** * @Assert\Choice(choices={"MR", "MRS"}, strict=true) */ private $salutation; }
-
Support for silently ignoring duplicate mapping keys in YAML has been deprecated and will lead to a
ParseException
in Symfony 4.0. -
Mappings with a colon (
:
) that is not followed by a whitespace are deprecated and will lead to aParseException
in Symfony 4.0 (e.g.foo:bar
must befoo: bar
).