Skip to content

Commit 5bb5c2d

Browse files
authored
Merge pull request symfony#28290 from fabpot/release-3.4.15
released v3.4.15
2 parents cbe9822 + 1735abb commit 5bb5c2d

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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.15 (2018-08-28)
11+
12+
* bug #28278 [HttpFoundation] Fix unprepared BinaryFileResponse sends empty file (wackymole)
13+
* bug #28284 [PhpUnitBridge] keep compat with composer 1.0 (nicolas-grekas)
14+
* bug #28241 [HttpKernel] fix forwarding trusted headers as server parameters (nicolas-grekas)
15+
* bug #28220 [PropertyAccess] fix type error handling when writing values (xabbuh)
16+
* bug #28249 [Cache] enable Memcached::OPT_TCP_NODELAY to fix perf of misses (nicolas-grekas)
17+
* bug #28252 [DoctrineBridge] support __toString as documented for UniqueEntityValidator (dmaicher)
18+
* bug #28100 [Security] Call AccessListener after LogoutListener (chalasr)
19+
* bug #28060 [DI] Fix false-positive circular ref leading to wrong exceptions or infinite loops at runtime (nicolas-grekas)
20+
* bug #28144 [HttpFoundation] fix false-positive ConflictingHeadersException (nicolas-grekas)
21+
* bug #28012 [PropertyInfo] Allow nested collections (jderusse)
22+
* bug #28055 [PropertyInfo] Allow nested collections (jderusse)
23+
* bug #28083 Remove the Expires header when calling Response::expire() (javiereguiluz)
24+
1025
* 3.4.14 (2018-08-01)
1126

1227
* security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas)

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.15-DEV';
70+
const VERSION = '3.4.15';
7171
const VERSION_ID = 30415;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 15;
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)