Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 323bfa0

Browse filesBrowse files
authored
Merge pull request #30068 from fabpot/release-4.2.3
released v4.2.3
2 parents c839a4b + c41a869 commit 323bfa0
Copy full SHA for 323bfa0

File tree

Expand file treeCollapse file tree

2 files changed

+36
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+36
-2
lines changed

‎CHANGELOG-4.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.2.md
+34Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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.3 (2019-02-03)
11+
12+
* bug #30050 [Cache] fix pruning pdo cache for vendors that throw on execute (bendavies)
13+
* bug #30046 [DI] Fix dumping Doctrine-like service graphs (nicolas-grekas)
14+
* bug #30028 [Form] fix some docblocks and type checks (xabbuh)
15+
* bug #30037 Disable Twig in the profiler menu when Twig is not used (javiereguiluz)
16+
* bug #30026 [VarDumper] dont implement Serializable in Stub (nicolas-grekas)
17+
* bug #30034 [Config] ensure moving away from Serializable wont break cache:clear (nicolas-grekas)
18+
* bug #29532 [Messenger] fixed RabbitMQ arguments not passed as integer values (thePanz)
19+
* bug #30013 [Routing] dont redirect routes with greedy trailing vars with no explicit slash (nicolas-grekas)
20+
* bug #30006 [Security] don't do nested calls to serialize() (nicolas-grekas, Renan)
21+
* bug #30007 [FrameworkBundle] Support use of hyphen in asset package name (damaya, XuruDragon)
22+
* bug #30004 Fix format strings for deprecation notices (TysonAndre)
23+
* bug #29984 [VarDumper] Fixed search bar (ro0NL)
24+
* bug #29764 [HttpFoundation] Check file exists before unlink (adam-mospan)
25+
* bug #29783 [HttpFoundation] MemcachedSessionHandler::close() must close connection (grachevko)
26+
* bug #29794 Always pass $key to NullAdapter->createCacheItem (TysonAndre)
27+
* bug #29844 [Console] Fixed #29835: ConfirmationQuestion with default true for answer '0' (mrthehud)
28+
* bug #29869 [Debug][ErrorHandler] Preserve our error handler when a logger sets another one (fancyweb)
29+
* bug #29900 [Cache] PDO-based cache pool table autocreation does not work (errogaht)
30+
* bug #29926 [Form] Changed UrlType input type to text when default_protocol is not null (MatTheCat)
31+
* bug #29961 [Translation] Concatenated translation messages (Stadly)
32+
* bug #29847 [Cache] fix used variable name (xabbuh)
33+
* bug #29920 [Debug][DebugClassLoader] Match more cases for final, deprecated and internal classes / methods extends (fancyweb)
34+
* bug #29922 Avoid dots in generated class names (derrabus)
35+
* bug #29863 [Security] Do not mix password_*() API with libsodium one (chalasr)
36+
* bug #29894 [DependencyInjection] the string "0" is a valid service identifier (xabbuh)
37+
* bug #29885 Update MimeType extensions (fabpot)
38+
* bug #29875 [TwigBridge] fix compatibility with Twig >= 2.6.1 (xabbuh)
39+
* bug #29873 [Debug] remove return type hint for PHP 5 compatibility (xabbuh)
40+
* bug #29837 Fix SwiftMailerHandler to support Monolog's latest reset functionality (Seldaek)
41+
* bug #29853 Revert "bug #29597 [DI] fix reporting bindings on overriden services as unused" (mmarynich)
42+
* bug #29833 [DebugClassLoader] expose proxyfied findFile() method (fancyweb)
43+
1044
* 4.2.2 (2019-01-06)
1145

1246
* bug #29494 [HttpFoundation] Fix request uri when it starts with double slashes (alquerci)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.3-DEV';
76+
const VERSION = '4.2.3';
7777
const VERSION_ID = 40203;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 3;
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.