Merge pull request #29383 from fabpot/release-4.2.0

released v4.2.0
This commit is contained in:
Fabien Potencier 2018-11-30 10:32:16 +01:00 committed by GitHub
commit 7bd9a1bae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -7,6 +7,16 @@ 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.0 (2018-11-30)
* bug #29343 [Form] Handle all case variants of "nan" when parsing a number (mwhudson, xabbuh)
* bug #29373 [Routing] fix trailing slash redirection (nicolas-grekas)
* bug #29355 [PropertyAccess] calculate cache keys for property setters depending on the value (xabbuh)
* bug #29369 [DI] fix combinatorial explosion when analyzing the service graph (nicolas-grekas)
* bug #29349 [Debug] workaround opcache bug mutating "$this" !?! (nicolas-grekas)
* bug #29344 Fixes sprintf(): Too few arguments in Translator (stephanedelprat)
* bug #29318 [Console] Move back root exception to stack trace in verbose mode (chalasr)
* 4.2.0-RC1 (2018-11-26)
* bug #29332 [PropertyAccess] make cache keys encoding bijective (nicolas-grekas)

View File

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