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 6941a92

Browse filesBrowse files
authored
Merge pull request #32192 from fabpot/release-4.2.10
released v4.2.10
2 parents 14b0409 + c8899f3 commit 6941a92
Copy full SHA for 6941a92

File tree

2 files changed

+37
-2
lines changed
Filter options

2 files changed

+37
-2
lines changed

‎CHANGELOG-4.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.2.md
+35Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ 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.10 (2019-06-26)
11+
12+
* bug #31972 Add missing rendering of form help block. (alexsegura)
13+
* bug #32137 [HttpFoundation] fix accessing session bags (xabbuh)
14+
* bug #32164 [EventDispatcher] collect called listeners information only once (xabbuh)
15+
* bug #32173 [FrameworkBundle] Fix calling Client::getProfile() before sending a request (dunglas)
16+
* bug #32163 [DoctrineBridge] Fix type error (norkunas)
17+
* bug #32170 [Security/Core] Don't use ParagonIE_Sodium_Compat (nicolas-grekas)
18+
* bug #32094 [Validator] Use LogicException for missing Property Access Component in comparison constraints (Lctrs)
19+
* bug #32123 [Form] fix translation domain (xabbuh)
20+
* bug #32116 [FrameworkBundle] tag the FileType service as a form type (xabbuh)
21+
* bug #32090 [Debug] workaround BC break in PHP 7.3 (nicolas-grekas)
22+
* bug #32076 [Lock] Fix PDO prune not called (jderusse)
23+
* bug #32071 Fix expired lock not cleaned (jderusse)
24+
* bug #32057 [HttpFoundation] Fix SA/phpdoc JsonResponse (ro0NL)
25+
* bug #32025 SimpleCacheAdapter fails to cache any item if a namespace is used (moufmouf)
26+
* bug #32037 [Form] validate composite constraints in all groups (xabbuh)
27+
* bug #32007 [Serializer] Handle true and false appropriately in CSV encoder (battye)
28+
* bug #32000 [Routing] fix absolute url generation when scheme is not known (Tobion)
29+
* bug #32024 [VarDumper] fix dumping objects that implement __debugInfo() (nicolas-grekas)
30+
* bug #31962 Fix reporting unsilenced deprecations from insulated tests (nicolas-grekas)
31+
* bug #31925 [Form] fix usage of legacy TranslatorInterface (nicolas-grekas)
32+
* bug #31908 [Validator] fix deprecation layer of ValidatorBuilder (nicolas-grekas)
33+
* bug #31894 Fix wrong requirements for ocramius/proxy-manager in root composer.json (henrikvolmer)
34+
* bug #31865 [Form] Fix wrong DateTime on outdated ICU library (aweelex)
35+
* bug #31879 [Cache] Pass arg to get callback everywhere (fancyweb)
36+
* bug #31863 [HttpFoundation] Fixed case-sensitive handling of cache-control header in RedirectResponse constructor (Ivo)
37+
* bug #31869 Fix json-encoding when JSON_THROW_ON_ERROR is used (nicolas-grekas)
38+
* bug #31868 [HttpKernel] Fix handling non-catchable fatal errors (nicolas-grekas)
39+
* bug #31860 [HttpFoundation] work around PHP 7.3 bug related to json_encode() (nicolas-grekas)
40+
* bug #31407 [Security] added support for updated "distinguished name" format in x509 authentication (Robert Kopera)
41+
* bug #31786 [Translation] Fixed case sensitivity of lint:xliff command (javiereguiluz)
42+
* bug #31757 [DomCrawler] Fix type error with null Form::$currentUri (chalasr)
43+
* bug #31654 [HttpFoundation] Do not set X-Accel-Redirect for paths outside of X-Accel-Mapping (vilius-g)
44+
1045
* 4.2.9 (2019-05-28)
1146

1247
* bug #31584 [Workflow] Do not trigger extra guards (lyrixx)

‎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.10-DEV';
76+
const VERSION = '4.2.10';
7777
const VERSION_ID = 40210;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 10;
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.