8000 Merge pull request #29493 from fabpot/release-4.2.1 · symfony/symfony@cadb4e8 · GitHub
[go: up one dir, main page]

Skip to content

Commit cadb4e8

Browse files
authored
Merge pull request #29493 from fabpot/release-4.2.1
released v4.2.1
2 parents 54fe82d + 267db02 commit cadb4e8

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG-4.2.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ 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.1 (2018-12-06)
11+
12+
* security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh)
13+
* security #cve-2018-19789 [Form] Filter file uploads out of regular form types (nicolas-grekas)
14+
* bug #29481 [TwigBridge] Deprecating legacy Twig paths in DebugCommand and simplifications (yceruto)
15+
* bug #29436 [Cache] Fixed Memcached adapter doClear()to call flush() (raitocz)
16+
* bug #29482 Fixes sprintf(): Too few arguments in MessageFormatter::choiceFormat (stephanedelprat)
17+
* bug #29461 [Contracts] extract LocaleAwareInterface out of TranslatorInterface (nicolas-grekas)
18+
* bug #29446 [VarExporter] fix dumping private properties from abstract classes (nicolas-grekas)
19+
* bug #29441 [Routing] ignore trailing slash for non-GET requests (nicolas-grekas)
20+
* bug #29445 [FrameworkBundle] Fix empty output for debug:autowiring when reflection-docblock is not installed (chalasr)
21+
* bug #29444 [Workflow] Fixed BC break for Workflow metadata (lyrixx)
22+
* bug #29432 [DI] dont inline when lazy edges are found (nicolas-grekas)
23+
* bug #29413 [Serializer] fixed DateTimeNormalizer to maintain microseconds when a different timezone required (rvitaliy)
24+
* bug #29424 [Routing] fix taking verb into account when redirecting (nicolas-grekas)
25+
* bug #29418 [VarExporter] fix dumping protected property from abstract classes (nicolas-grekas)
26+
* bug #29414 [DI] Fix dumping expressions accessing single-use private services (chalasr)
27+
* bug #28853 [LDAP] Add TIMEOUT Option to LDAP Connection Options (lmatte7)
28+
* bug #29399 [FrameworkBundle] define doctrine as default_pdo_provider only if the package is installed (nicolas-grekas)
29+
* bug #29375 [Validator] Allow `ConstraintViolation::__toString()` to expose codes that are not null or emtpy strings (phansys)
30+
* bug #29376 [EventDispatcher] Fix eventListener wrapper loop in TraceableEventDispatcher (jderusse)
31+
* bug #29386 undeprecate the single-colon notation for controllers (fbourigault)
32+
* bug #29393 [DI] fix edge case in InlineServiceDefinitionsPass (nicolas-grekas)
33+
* bug #29394 [Config] fix path exclusion during glob discovery (nicolas-grekas)
34+
* bug #29395 [FrameworkBundle][Messenger] Restore check for messenger serializer default id (ogizanagi)
35+
* bug #29380 [Routing] fix greediness of trailing slash (nicolas-grekas)
36+
1037
* 4.2.0 (2018-11-30)
1138

1239
* bug #29343 [Form] Handle all case variants of "nan" when parsing a number (mwhudson, xabbuh)

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.1-DEV';
76+
const VERSION = '4.2.1';
7777
const VERSION_ID = 40201;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 1;
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