From ff81046f3802e176299a1a4176c24dddabb6bb31 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Aug 2018 08:05:40 +0200 Subject: [PATCH 1/2] updated CHANGELOG for 3.4.15 --- CHANGELOG-3.4.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index f0cde9e267..567f31a8c1 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,21 @@ in 3.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1 +* 3.4.15 (2018-08-28) + + * bug #28278 [HttpFoundation] Fix unprepared BinaryFileResponse sends empty file (wackymole) + * bug #28284 [PhpUnitBridge] keep compat with composer 1.0 (nicolas-grekas) + * bug #28241 [HttpKernel] fix forwarding trusted headers as server parameters (nicolas-grekas) + * bug #28220 [PropertyAccess] fix type error handling when writing values (xabbuh) + * bug #28249 [Cache] enable Memcached::OPT_TCP_NODELAY to fix perf of misses (nicolas-grekas) + * bug #28252 [DoctrineBridge] support __toString as documented for UniqueEntityValidator (dmaicher) + * bug #28100 [Security] Call AccessListener after LogoutListener (chalasr) + * bug #28060 [DI] Fix false-positive circular ref leading to wrong exceptions or infinite loops at runtime (nicolas-grekas) + * bug #28144 [HttpFoundation] fix false-positive ConflictingHeadersException (nicolas-grekas) + * bug #28012 [PropertyInfo] Allow nested collections (jderusse) + * bug #28055 [PropertyInfo] Allow nested collections (jderusse) + * bug #28083 Remove the Expires header when calling Response::expire() (javiereguiluz) + * 3.4.14 (2018-08-01) * security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas) From 1735abb8a08993fe3de074f9c504250400dd694f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Aug 2018 08:06:12 +0200 Subject: [PATCH 2/2] updated VERSION for 3.4.15 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 0f4eeeb58a..ac6471a8b9 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.15-DEV'; + const VERSION = '3.4.15'; const VERSION_ID = 30415; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; const RELEASE_VERSION = 15; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021';