Skip to content

Commit 43421aa

Browse files
authored
Merge pull request symfony#28641 from fabpot/release-3.4.16
released v3.4.16
2 parents 38ff748 + 1a587f9 commit 43421aa

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ in 3.4 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/v3.4.0...v3.4.1
99

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

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

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6767
private $requestStackSize = 0;
6868
private $resetServices = false;
6969

70-
const VERSION = '3.4.16-DEV';
70+
const VERSION = '3.4.16';
7171
const VERSION_ID = 30416;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 16;
75-
const EXTRA_VERSION = 'DEV';
75+
const EXTRA_VERSION = '';
7676

7777
const END_OF_MAINTENANCE = '11/2020';
7878
const END_OF_LIFE = '11/2021';

0 commit comments

Comments
 (0)