Symfony 3.4.3 released
January 5, 2018 • Published by Fabien Potencier
Warning: Symfony 3.4 is no longer supported. Consider upgrading your applications to the most recent Symfony version.
Symfony 3.4.3 has just been released. Here is a list of the most important changes:
- bug #25685 Use triggering file to determine weak vendors if when the test is run in a separate process (@alexpott)
- bug #25671 Remove randomness from dumped containers (@nicolas-grekas)
- bug #25532 [HttpKernel] Disable CSP header on exception pages (@ostrolucky)
- bug #25678 [WebProfilerBundle] set the var in the right scope (@Jochen Mandl)
- bug #25491 [Routing] Use the default host even if context is empty (@sroze)
- bug #25672 [WebServerBundle] use interface_exists instead of class_exists (@kbond)
- bug #25662 Dumper shouldn't use html format for phpdbg / cli-server (@jhoff)
- bug #25529 [Validator] Fix access to root object when using composite constraint (@ostrolucky)
- bug #25404 [Form] Remove group options without data on debug:form command (@yceruto)
- bug #25430 Fixes for Oracle in PdoSessionHandler (@elislenio)
- bug #25117 [FrameworkBundle] Make cache:clear "atomic" and consistent with cache:warmup (@hkdobrev)
- bug #25583 [HttpKernel] Call Response->setPrivate() instead of sending raw header() when session is started (@Toflar)
- bug #25601 [TwigBundle/Brige] catch missing requirements to throw meaningful exceptions (@nicolas-grekas)
- bug #25547 [DX][DependencyInjection] Suggest to write an implementation if the interface cannot be autowired (@sroze)
- bug #25599 Add application/ld+json format associated to json (@vincentchalamon)
- bug #25623 [HttpFoundation] Fix false-positive ConflictingHeadersException (@nicolas-grekas)
- bug #25624 [WebServerBundle] Fix escaping of php binary with arguments (@nicolas-grekas)
- bug #25604 Add check for SecurityBundle in createAccessDeniedException (@FGM)
- bug #25591 [HttpKernel] fix cleaning legacy containers (@nicolas-grekas)
- bug #25526 [WebProfilerBundle] Fix panel break when stopwatch component is not installed. (@umulmrum, @javiereguiluz)
- bug #25606 Updating message to inform the user how to install the component (@weaverryan)
- bug #25571 [SecurityBundle] allow auto_wire for SessionAuthenticationStrategy class (@xavren)
- bug #25567 [Process] Fix setting empty env vars (@nicolas-grekas)
- bug #25407 [Console] Commands with an alias should not be recognized as ambiguous (@Simperfit)
- bug #25523 [WebServerBundle] fix a bug where require would not require the good file because of env (@Simperfit)
- bug #25559 [Process] Dont use getenv(), it returns arrays and can introduce subtle breaks accros PHP versions (@nicolas-grekas)
- bug #25552 [WebProfilerBundle] Let fetch() cast URL to string (@ro0NL)
- bug #25521 [Console] fix a bug when you are passing a default value and passing -n would output the index (@Simperfit)
Want to upgrade to this new release? Fortunately, because Symfony protects backwards-compatibility very closely, this should be quite easy. Read our upgrade documentation to learn more.
Want to be notified whenever a new Symfony release is published? Or when a version is not maintained anymore? Or only when a security issue is fixed? Consider subscribing to the Symfony Roadmap Notifications.
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
Hi, Thank you for this release. Got this error after migrating 3.4.2 => 3.4.3
In ParameterBag.php line 102: You have requested a non-existent parameter "container.build_id".
Any clue ?
@Thomas Magano that is because you are using https://github.com/matthiasnoback/symfony-service-definition-validator so one fix would be to stop using it.
Hi @Craig Heydenburg, thank you for your help. I don't have this specific bundle in my project, maybe it's could be another similar ?
@Thomas Magnano JMSExtraSecurityBundle
Related issue: https://github.com/symfony/symfony/issues/25695
@Viktoras Puzas Perfect, that's it ! Thank you.