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 5365a36

Browse filesBrowse files
authored
Merge pull request #30838 from fabpot/release-4.2.5
released v4.2.5
2 parents 4a6a925 + da9ad29 commit 5365a36
Copy full SHA for 5365a36

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+48
-2
lines changed

‎CHANGELOG-4.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.2.md
+46Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,52 @@ 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.5 (2019-04-02)
11+
12+
* bug #30660 [Bridge][Twig] DebugCommand - fix escaping and filter (SpacePossum)
13+
* bug #30784 [Translator] Add resource path to exception message for schema valida… (jschaedl)
14+
* bug #30720 Fix getSetMethodNormalizer to correctly ignore the attributes specified in "ignored_attributes" (Emmanuel BORGES)
15+
* bug #30749 [Serializer] Added check of constuctor modifiers to AbstractNormalizer (NekaKawaii)
16+
* bug #30776 [Routing] Fix routes annotation loading with glob pattern (snoob)
17+
* bug #30773 [DependencyInjection] Fix hardcoded hotPathTagName (jderusse)
18+
* bug #30737 [Validator] Improve constraint default option check (vudaltsov)
19+
* bug #30736 [Validator] Fix annotation default for @Count and @Length (vudaltsov)
20+
* bug #30621 [Cache] Ensure key exists before checking array value (jrjohnson)
21+
* bug #30711 [Serializer] Use object class resolver when extracting attributes (joelwurtz)
22+
* bug #30641 [FrameworkBundle] properly describe service definitions without class (xabbuh)
23+
* bug #30620 [FrameworkBundle][HttpFoundation] make session service resettable (dmaicher)
24+
* bug #30648 Debug finalized config in debug:config (ro0NL)
25+
* bug #30640 [Phpunit] fixed support for PHP 5.3 (fabpot)
26+
* bug #30616 Fix case when multiple loaders are providing paths for the same namespace (yceruto)
27+
* bug #30595 Do not validate child constraints if form has no validation groups (maryo)
28+
* bug #30440 [TwigBridge] Fix DebugCommand when chain loader is involved (yceruto)
29+
* bug #30479 Check if Client exists when test.client does not exist, to provide clearer exception message (SerkanYildiz)
30+
* bug #30597 [Form] Added ResetInterface to CachingFactoryDecorator (HeahDude)
31+
* bug #30593 Fixed usage of TranslatorInterface in form extension (fixes #30591) (althaus)
32+
* feature #30584 [Intl] Add compile binary (ro0NL)
33+
* bug #30487 Fix Cache error while using anonymous class (Emmanuel BORGES)
34+
* bug #30576 [Cache] fix LockRegistry (nicolas-grekas)
35+
* bug #30548 Correct language code for ukrainian language (stanleyk)
36+
* bug #30518 [Cache] Fix perf when using RedisCluster by reducing roundtrips to the servers (nicolas-grekas)
37+
* bug #30515 [Cache] Only delete one key at a time when on Predis + Cluster (andrerom)
38+
* bug #30511 [Process] fix using argument $php of new PhpProcess() (nicolas-grekas)
39+
* bug #30507 [Routing] Fixed XML options resolution (Jules Pietri)
40+
* bug #30506 [TwigBridge] remove deprecation triggered when using Twig 2.7 (nicolas-grekas)
41+
* bug #30496 [PHPUnit-Bridge] override some Composer environment variables (nicoweb)
42+
* bug #30505 [TwigBridge] Remove usages of the spaceless tag (nicolas-grekas)
43+
* bug #30466 [Messenger] Make 'headers' key optional for encoded messages (yceruto)
44+
* bug #30474 compatibility with phpunit8 (garak)
45+
* bug #30497 [HttpKernel] Change default log level for output streams (yceruto)
46+
* bug #30498 [translation] Update defaut format from yml to yaml (GaryPEGEOT)
47+
* bug #30490 Don't resolve the Deprecation error handler mode until a deprecation is triggered (Emmanuel BORGES)
48+
* bug #30396 [Form] Avoid a form type extension appears many times in debug:form (markitosgv)
49+
* bug #30361 [PropertyInfo] Fix undefined variable fromConstructor when passing context to getTypes (mantis)
50+
* bug #30361 [PropertyInfo] Fix undefined variable fromConstructor when passing context to getTypes (mantis, OskarStark)
51+
* bug #30410 [Monolog] Really reset logger when calling logger::reset() (lyrixx)
52+
* bug #30437 [Debug] detect annotations before blank docblock lines (xabbuh)
53+
* bug #30417 Autoconfig: don't automatically tag decorators (dunglas)
54+
* bug #30392 [PropertyAccess] Fixed PropertyPathBuilder remove that fails to reset internal indexes (GregOriol)
55+
1056
* 4.2.4 (2019-03-03)
1157

1258
* bug #30383 [WebProfilerBundle] toolbar: invisible route name in Firefox (inmarelibero)

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