From b962cfcfbb6713c74db660466c103420a1693b65 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 3 Apr 2018 07:49:33 +0200 Subject: [PATCH 1/2] updated CHANGELOG for 3.4.7 --- CHANGELOG-3.4.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index e735c49d847f0..ee69e43fc8382 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,48 @@ 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.7 (2018-04-03) + + * bug #26387 [Yaml] Fix regression when trying to parse multiline (antograssiot) + * bug #26749 Add PHPDbg support to HTTP components (hkdobrev) + * bug #26609 [Console] Fix check of color support on Windows (mlocati) + * bug #26727 [HttpCache] Unlink tmp file on error (Chansig) + * bug #26675 [HttpKernel] DumpDataCollector: do not flush when a dumper is provided (ogizanagi) + * bug #26663 [TwigBridge] Fix rendering of currency by MoneyType (ro0NL) + * bug #26595 [DI] Do not suggest writing an implementation when multiple exist (chalasr) + * bug #26662 [DI] Fix hardcoded cache dir for warmups (nicolas-grekas) + * bug #26677 Support phpdbg SAPI in Debug::enable() (hkdobrev) + * bug #26600 [Routing] Fixed the importing of files using glob patterns that match multiple resources (skalpa) + * bug #26589 [Ldap] cast to string when checking empty passwords (ismail1432) + * bug #26626 [WebProfilerBundle] use the router to resolve file links (nicolas-grekas) + * bug #26635 [DI] Dont tell about autoregistration in strict autowiring mode (nicolas-grekas) + * bug #26621 [Form] no type errors with invalid submitted data types (xabbuh) + * bug #26612 [PHPunit] suite variable should be used (prisis) + * bug #26337 [Finder] Fixed leading/trailing / in filename (lyrixx) + * bug #26584 [TwigBridge] allow html5 compatible rendering of forms with null names (systemist) + * bug #24401 [Form] Change datetime to datetime-local for HTML5 datetime input (pierredup) + * bug #26513 [FrameworkBundle] Respect debug mode when warm up annotations (Strate) + * bug #26370 [Security] added userChecker to SimpleAuthenticationProvider (i3or1s) + * bug #26569 [BrowserKit] Fix cookie path handling when $domain is null (dunglas) + * bug #26273 [Security][Profiler] Display the original expression in 'Access decision log' (lyrixx) + * bug #26427 [DependencyInjection] fix regression when extending the Container class without a constructor (lsmith77) + * bug #26562 [Bridge\PhpUnit] Cannot autoload class "\Symfony\Bridge\PhpUnit\SymfonyTestsListener" (Jake Bishop) + * bug #26598 Fixes #26563 (open_basedir restriction in effect) (temperatur) + * bug #26568 [Debug] Reset previous exception handler earlier to prevent infinite loop (nicolas-grekas) + * bug #26590 Make sure form errors is valid HTML (Nyholm) + * bug #26567 [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore (fancyweb) + * feature #26408 Readd 'form_label_errors' block to disable errors on form labels (birkof) + * bug #26591 [TwigBridge] Make sure we always render errors. Eventhough labels are disabled (Nyholm) + * bug #26356 [FrameworkBundle] HttpCache is not longer abstract (lyrixx) + * bug #26548 [DomCrawler] Change bad wording in ChoiceFormField::untick (dunglas) + * bug #26482 [PhpUnitBridge] Ability to use different composer.json file (amcastror) + * bug #26443 [Fix][HttpFoundation] Fix the updating of timestamp in the MemcachedSessionHandler (Alessandro Loffredo) + * bug #26400 [Config] ReflectionClassResource check abstract class (andrey1s) + * bug #26433 [DomCrawler] extract(): fix a bug when the attribute list is empty (dunglas) + * bug #26041 Display the Welcome Page when there is no homepage defined (javiereguiluz) + * bug #26452 [Intl] Load locale aliases to support alias fallbacks (jakzal) + * bug #26450 [CssSelector] Fix CSS identifiers parsing - they can start with dash (jakubkulhan) + * 3.4.6 (2018-03-05) * bug #26393 [DI] Skip resource tracking if disabled (chalasr) From 9b6668540dda74b42c01a5e921e34612ba33c409 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 3 Apr 2018 07:49:44 +0200 Subject: [PATCH 2/2] updated VERSION for 3.4.7 --- 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 f5b8cb7213c7d..d092db6a354b4 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.7-DEV'; + const VERSION = '3.4.7'; const VERSION_ID = 30407; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; const RELEASE_VERSION = 7; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021';