From db4e0ed9995276a3b3d94fa7922f58d7594d115a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 3 Mar 2019 20:38:00 +0100 Subject: [PATCH 1/2] updated CHANGELOG for 4.2.4 --- CHANGELOG-4.2.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/CHANGELOG-4.2.md b/CHANGELOG-4.2.md index 96994ff62024..bf1520b31005 100644 --- a/CHANGELOG-4.2.md +++ b/CHANGELOG-4.2.md @@ -7,6 +7,51 @@ 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.4 (2019-03-03) + + * bug #30383 [WebProfilerBundle] toolbar: invisible route name in Firefox (inmarelibero) + * bug #26532 [HttpKernel] Correctly merging cache directives in HttpCache/ResponseCacheStrategy (aschempp) + * bug #30363 Fixed the DebugClassLoader compatibility with eval()'d code on Darwin (skalpa) + * bug #30329 [Form] IntegerType: reject submitted non-integer numbers (xabbuh) + * bug #30331 [Cache] fix warming up cache.system and apcu (nicolas-grekas) + * bug #30347 [Security] Change FormAuthenticator if condition (PReimers) + * bug #30354 [Console] handles multi-byte characters in autocomplete (jls-esokia) + * bug #30351 Fix getItems() performance issue with RedisCluster (php-redis) (andrerom) + * bug #30350 [VarDumper] Keep a ref to objects to ensure their handle cannot be reused while cloning (nicolas-grekas) + * bug #30327 [HttpKernel] Fix possible infinite loop of exceptions (enumag) + * bug #27601 [Routing] fix URL generation with look-around requirements (nasimnabavi) + * bug #30277 [Console] Prevent ArgvInput::getFirstArgument() from returning an option value (chalasr) + * bug #29981 [Security] Complain about an empty decision strategy (corphi) + * bug #29822 [EventDispatcher] Fix unknown priority (ro0NL) + * bug #30324 [Validator] Fixed duplicate UUID (ralfkuehnel) + * bug #30265 [Form] do not validate non-submitted form fields in PATCH requests (xabbuh) + * bug #30313 Avoid mutating the Finder when building the iterator (stof) + * bug #30294 [FrameworkBundle] Fix Descriptor throwing on non existent parent (GuilhemN) + * bug #30271 [Console] Fix command testing with missing user inputs (chalasr) + * bug #30278 Remove unnecessary ProgressBar stdout writes (fixes flickering) (ostrolucky) + * bug #30274 [VarDumper] fix serializing Stub instances (nicolas-grekas) + * bug #30273 [Validator] Added missing use statement for UnexpectedTypeException (devrck) + * bug #30247 Don't resolve the Deprecation error handler mode until a deprecation is triggered (ossinkine) + * bug #30264 [Debug][ErrorHandler] Preserve next error handler (fancyweb) + * bug #30245 fix lost namespace in eval (fizzka) + * bug #30090 [FrameworkBundle] add constraint validators before optimizations (xabbuh) + * feature #30126 [Form] forward valid numeric values to transform() (xabbuh) + * bug #30122 [Security] fix switch user without having current token (Antoine Lamirault) + * bug #30136 use PropertyAccessorInterface instead of PropertyAccessor (nick-zh) + * bug #30124 Fix KernelTestCase compatibility for PhpUnit 8 (bis) (nicolas-grekas) + * bug #30061 [Form] render integer types with grouping as text input (xabbuh) + * bug #30063 [Form] don't lose int precision with not needed type casts (xabbuh) + * bug #30076 [Form] ignore _method forms in NativeRequestHandler (xabbuh) + * bug #30084 Fix KernelTestCase compatibility for PhpUnit 8 (alexander-schranz) + * bug #30093 [DependencyInjection] add $lazyLoad context to the generated code for lazy non-shared service by PhpDumper (XuruDragon) + * bug #30102 [Workflow] Graphviz dumper escape not always a string (Korbeil) + * bug #29884 [Form] CsrfValidationListener marks the token as invalid if it is not a string (umpirsky) + * bug #30058 [Routing] fix perf issue when dumping large number of routes (nicolas-grekas) + * bug #30062 [Form] do not overwrite the constraint being evaluated (xabbuh) + * bug #30074 Fix wrong value in file id attribute for Xliff 2.0 (deguif) + * bug #30078 [Messenger] Fix DataCollector template (ottaviano) + * bug #30087 [PhpUnitBridge] fix PHP 5.3 compat (nicolas-grekas) + * 4.2.3 (2019-02-03) * bug #30050 [Cache] fix pruning pdo cache for vendors that throw on execute (bendavies) From ea78c21cb6e1dc3c522ca291add8690897f9ba74 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 3 Mar 2019 20:38:09 +0100 Subject: [PATCH 2/2] updated VERSION for 4.2.4 --- 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 b8765902c901..6737caee9e1a 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.4-DEV'; + const VERSION = '4.2.4'; const VERSION_ID = 40204; const MAJOR_VERSION = 4; const MINOR_VERSION = 2; const RELEASE_VERSION = 4; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '07/2019'; const END_OF_LIFE = '01/2020';