8000 Merge pull request #29383 from fabpot/release-4.2.0 · symfony/symfony@7bd9a1b · GitHub
[go: up one dir, main page]

Skip to content

Commit 7bd9a1b

Browse files
authored
Merge pull request #29383 from fabpot/release-4.2.0
released v4.2.0
2 parents 5a4efee + 887b0f1 commit 7bd9a1b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-4.2.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ in 4.2 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.2.0...v4.2.1
99

10+
* 4.2.0 (2018-11-30)
11+
12+
* bug #29343 [Form] Handle all case variants of "nan" when parsing a number (mwhudson, xabbuh)
13+
* bug #29373 [Routing] fix trailing slash redirection (nicolas-grekas)
14+
* bug #29355 [PropertyAccess] calculate cache keys for property setters depending on the value (xabbuh)
15+
* bug #29369 [DI] fix combinatorial explosion when analyzing the service graph (nicolas-grekas)
16+
* bug #29349 [Debug] workaround opcache bug mutating "$this" !?! (nicolas-grekas)
17+
* bug #29344 Fixes sprintf(): Too few arguments in Translator (stephanedelprat)
18+
* bug #29318 [Console] Move back root exception to stack trace in verbose mode (chalasr)
19+
1020
* 4.2.0-RC1 (2018-11-26)
1121

1222
* bug #29332 [PropertyAccess] make cache keys encoding bijective (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
private $requestStackSize = 0;
7474
private $resetServices = false;
7575

76-
const VERSION = '4.2.0-DEV';
76+
const VERSION = '4.2.0';
7777
const VERSION_ID = 40200;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 0;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

8383
const END_OF_MAINTENANCE = '07/2019';
8484
const END_OF_LIFE = '01/2020';

0 commit comments

Comments
 (0)
0