Merge pull request #29493 from fabpot/release-4.2.1

released v4.2.1
This commit is contained in:
Fabien Potencier 2018-12-06 17:40:08 +00:00 committed by GitHub
commit cadb4e8e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 2 deletions

View File

@ -7,6 +7,33 @@ in 4.2 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.2.0...v4.2.1
* 4.2.1 (2018-12-06)
* security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh)
* security #cve-2018-19789 [Form] Filter file uploads out of regular form types (nicolas-grekas)
* bug #29481 [TwigBridge] Deprecating legacy Twig paths in DebugCommand and simplifications (yceruto)
* bug #29436 [Cache] Fixed Memcached adapter doClear()to call flush() (raitocz)
* bug #29482 Fixes sprintf(): Too few arguments in MessageFormatter::choiceFormat (stephanedelprat)
* bug #29461 [Contracts] extract LocaleAwareInterface out of TranslatorInterface (nicolas-grekas)
* bug #29446 [VarExporter] fix dumping private properties from abstract classes (nicolas-grekas)
* bug #29441 [Routing] ignore trailing slash for non-GET requests (nicolas-grekas)
* bug #29445 [FrameworkBundle] Fix empty output for debug:autowiring when reflection-docblock is not installed (chalasr)
* bug #29444 [Workflow] Fixed BC break for Workflow metadata (lyrixx)
* bug #29432 [DI] dont inline when lazy edges are found (nicolas-grekas)
* bug #29413 [Serializer] fixed DateTimeNormalizer to maintain microseconds when a different timezone required (rvitaliy)
* bug #29424 [Routing] fix taking verb into account when redirecting (nicolas-grekas)
* bug #29418 [VarExporter] fix dumping protected property from abstract classes (nicolas-grekas)
* bug #29414 [DI] Fix dumping expressions accessing single-use private services (chalasr)
* bug #28853 [LDAP] Add TIMEOUT Option to LDAP Connection Options (lmatte7)
* bug #29399 [FrameworkBundle] define doctrine as default_pdo_provider only if the package is installed (nicolas-grekas)
* bug #29375 [Validator] Allow `ConstraintViolation::__toString()` to expose codes that are not null or emtpy strings (phansys)
* bug #29376 [EventDispatcher] Fix eventListener wrapper loop in TraceableEventDispatcher (jderusse)
* bug #29386 undeprecate the single-colon notation for controllers (fbourigault)
* bug #29393 [DI] fix edge case in InlineServiceDefinitionsPass (nicolas-grekas)
* bug #29394 [Config] fix path exclusion during glob discovery (nicolas-grekas)
* bug #29395 [FrameworkBundle][Messenger] Restore check for messenger serializer default id (ogizanagi)
* bug #29380 [Routing] fix greediness of trailing slash (nicolas-grekas)
* 4.2.0 (2018-11-30)
* bug #29343 [Form] Handle all case variants of "nan" when parsing a number (mwhudson, xabbuh)

View File

@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;
const VERSION = '4.2.1-DEV';
const VERSION = '4.2.1';
const VERSION_ID = 40201;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 1;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';
const END_OF_MAINTENANCE = '07/2019';
const END_OF_LIFE = '01/2020';