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 818c91d

Browse filesBrowse files
authored
Merge pull request #28642 from fabpot/release-4.1.5
released v4.1.5
2 parents 9db4b0e + 296670c commit 818c91d
Copy full SHA for 818c91d

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+45
-2
lines changed

‎CHANGELOG-4.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.1.md
+43Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ in 4.1 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.1.0...v4.1.1
99

10+
* 4.1.5 (2018-09-30)
11+
12+
* bug #28636 [HttpFoundation] X-Accel-Mapping does not use HTTP key=value syntax (c960657)
13+
* bug #28376 [TwigBundle] Fixed caching of templates in src/Resources/<BundleName>/views on cache warmup (yceruto)
14+
* bug #28565 [HttpFoundation][Security] forward locale and format to subrequests (nicolas-grekas)
15+
* bug #28561 [Cache] prevent getting older entries when the version key is evicted (nicolas-grekas)
16+
* bug #28562 [HttpFoundation] fix hidding warnings from session handlers (nicolas-grekas)
17+
* bug #28545 [Console] Send the right exit code to console.terminate listeners (mpdude)
18+
* bug #28553 [Debug] Fix false-positive "MicroKernelTrait::loadRoutes()" method is considered internal" (nicolas-grekas)
19+
* bug #28466 [Form] fail reverse transforming invalid RFC 3339 dates (xabbuh)
20+
* bug #28540 [Intl] parse numbers terminated with decimal separator (xabbuh)
21+
* bug #28548 [Console] Fixed boxed table style with colspan (ro0NL)
22+
* bug #28433 [HttpFoundation] Allow reuse of Session between requests if ID did not change (tgalopin)
23+
* bug #28508 [Form] forward false label option to nested types (xabbuh)
24+
* bug #28471 [MonologBridge] Re-add option option to ignore empty context and extra data (mpdude)
25+
* bug #28464 [Form] forward the invalid_message option in date types (xabbuh)
26+
* bug #28524 [PhpUnitBridge] fix disabling DeprecationErrorHandler using phpunit.xml file (soerenbernstein)
27+
* bug #28512 [DI] fix infinite loop involving self-references in decorated services (nicolas-grekas)
28+
* bug #28507 [DI] fix dumping lazy services (nicolas-grekas)
29+
* bug #28469 [Form][TwigBridge] fix not displaying labels when value is false (xabbuh)
30+
* bug #28495 [PhpUnitBridge] Implement startTest rather than startTestSuite (greg0ire)
31+
* bug #28480 [DI] Detect circular references with ChildDefinition parent (Seb33300)
32+
* bug #28497 [VarDumper] Fix global dump function return value for PHP7 (patrickcarlohickman)
33+
* bug #28499 [Ldap] Use shut up operator on connection errors at ldap_start_tls (Andras Debreczeni)
34+
* bug #28372 [Form] Fix DateTimeType html5 input format (franzwilding, mcfedr)
35+
* bug #28396 [Intl] Blacklist Eurozone and United Nations in Region Data Generator (gregurco)
36+
* bug #28418 [FrameworkBundle] Register the messenger data collector only when the profiler is enabled (pierredup)
37+
* bug #28393 [Console] fixed corrupt error output for unknown multibyte short option (downace)
38+
* bug #28411 [Debug] fix detecting overriden final/internal methods implemented using traits (nicolas-grekas)
39+
* bug #28404 [Controller][ServiceValueResolver] Making method access case insensitive (nicoweb)
40+
* bug #28401 [Console] Fix SymfonyQuestionHelper::askQuestion() with choice value as default (chalasr)
41+
* bug #28388 [DI] configure inlined services before injecting them when dumping the container (nicolas-grekas)
42+
* bug #28377 fix fopen flags (SpacePossum)
43+
* bug #27764 [TwigBundle] Fixed caching of templates in default path on cache warmup (yceruto)
44+
* bug #28366 [DI] Fix dumping some complex service graphs (nicolas-grekas)
45+
* bug #27970 [FileValidator] Format file size in validation message according to binaryFormat option (jfredon)
46+
* bug #28029 [TwigBundle] remove cache warmers when Twig cache is disabled (xabbuh)
47+
* bug #28322 [Workflow] Make sure we do not run the next transition on an updated state (Nyholm)
48+
* bug #28344 [HttpKernel][FrameworkBundle] Fix escaping of serialized payloads passed to test clients (nicolas-grekas)
49+
* bug #28183 [WebProfilerBundle] fix wrong url when base path is the index (ismail1432)
50+
* bug #28334 [FWB][Messenger] Revert "Move commands-specifics to a compiler pass in FWB" (sroze)
51+
* bug #28328 [Messenger][FrameworkBundle] Move commands-specifics to a compiler pass in FWB (sroze)
52+
1053
* 4.1.4 (2018-08-28)
1154

1255
* bug #28278 [HttpFoundation] Fix unprepared BinaryFileResponse sends empty file (wackymole)

‎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
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.1.5-DEV';
66+
const VERSION = '4.1.5';
6767
const VERSION_ID = 40105;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 5;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '01/2019';
7474
const END_OF_LIFE = '07/2019';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.