From 3f1cd59acec1ffd57e0a99cef37c87143c84761d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 16 Apr 2019 09:20:18 +0200 Subject: [PATCH 1/2] updated CHANGELOG for 4.2.6 --- CHANGELOG-4.2.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/CHANGELOG-4.2.md b/CHANGELOG-4.2.md index 6af197319cde7..8611ee540a1ca 100644 --- a/CHANGELOG-4.2.md +++ b/CHANGELOG-4.2.md @@ -7,6 +7,45 @@ in 4.2 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/v4.2.0...v4.2.1 +* 4.2.6 (2019-04-16) + + * bug #31088 [DI] fix removing non-shared definition while inlining them (nicolas-grekas) + * bug #29944 [DI] Overriding services autowired by name under _defaults bind not working (przemyslaw-bogusz, renanbr) + * bug #30993 [FrameworkBundle] Fix for Controller DEPRECATED when using composer --optimized (aweelex) + * bug #31076 [HttpKernel] Fixed LoggerDataCollector crashing on empty file (althaus) + * bug #31071 property normalizer should also pass format and context to isAllowedAttribute (dbu) + * bug #31059 Show more accurate message in profiler when missing stopwatch (linaori) + * bug #31026 [Serializer] Add default object class resolver (jdecool) + * bug #31031 [Serializer] MetadataAwareNameConverter: Do not assume that property names are strings (soyuka) + * bug #31043 [VarExporter] support PHP7.4 __serialize & __unserialize (nicolas-grekas) + * bug #30423 [Security] Rework firewall's access denied rule (dimabory) + * bug #31020 [VarExporter] fix exporting classes with private constructors (nicolas-grekas) + * bug #31012 [Process] Fix missing $extraDirs when open_basedir returns (arsonik) + * bug #30852 [Console] fix buildTableRows when Colspan is use with content too long (Raulnet) + * bug #30950 [Serializer] Also validate callbacks when given in the normalizer context (dbu) + * bug #30907 [Serializer] Respect ignored attributes in cache key of normalizer (dbu) + * bug #30085 Fix TestRunner compatibility to PhpUnit 8 (alexander-schranz) + * bug #30999 Fix dark themed componnents (ro0NL) + * bug #30977 [serializer] prevent mixup in normalizer of the object to populate (dbu) + * bug #30976 [Debug] Fixed error handling when an error is already handled when another error is already handled (5) (lyrixx) + * bug #30979 Fix the configurability of CoreExtension deps in standalone usage (stof) + * bug #30918 [Cache] fix using ProxyAdapter inside TagAwareAdapter (dmaicher) + * bug #30961 [Form] fix translating file validation error message (xabbuh) + * bug #30951 Handle case where no translations were found (greg0ire) + * bug #29800 [Validator] Only traverse arrays that are cascaded into (corphi) + * bug #30921 [Translator] Warm up the translations cache in dev (tgalopin) + * bug #30922 [TwigBridge] fix horizontal spacing of inlined Bootstrap forms (xabbuh) + * bug #30860 [Profiler] Fix dark theme elements color (dFayet) + * bug #30895 [Form] turn failed file uploads into form errors (xabbuh) + * bug #30919 [Translator] Fix wrong dump for PO files (deguif) + * bug #30889 [DependencyInjection] Fix a wrong error when using a factory (Simperfit) + * bug #30911 [Console] Fix table trailing backslash (maidmaid) + * bug #30903 [Messenger] Uses the `SerializerStamp` when deserializing the envelope (sroze) + * bug #30879 [Form] Php doc fixes and cs + optimizations (Jules Pietri) + * bug #30883 [Console] Fix stty not reset when aborting in QuestionHelper::autocomplete() (Simperfit) + * bug #30878 [Console] Fix inconsistent result for choice questions in non-interactive mode (chalasr) + * bug #30825 [Routing] Fix: annotation loader ignores method's default values (voronkovich) + * 4.2.5 (2019-04-02) * bug #30660 [Bridge][Twig] DebugCommand - fix escaping and filter (SpacePossum) From 25eff940aa17d8cd768a0fafac7309394af14077 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 16 Apr 2019 09:20:25 +0200 Subject: [PATCH 2/2] updated VERSION for 4.2.6 --- 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 f71606e107fa6..bdba3ad5aad5e 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.2.6-DEV'; + const VERSION = '4.2.6'; const VERSION_ID = 40206; const MAJOR_VERSION = 4; const MINOR_VERSION = 2; const RELEASE_VERSION = 6; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '07/2019'; const END_OF_LIFE = '01/2020';