From 0a7cfd365ed75ec0ae6f2fc506608b0f9ed328e7 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 6 Jan 2019 17:16:07 +0100 Subject: [PATCH 1/2] updated CHANGELOG for 4.1.10 --- CHANGELOG-4.1.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG-4.1.md b/CHANGELOG-4.1.md index a547ce44c6b7..3a013e250408 100644 --- a/CHANGELOG-4.1.md +++ b/CHANGELOG-4.1.md @@ -7,6 +7,39 @@ in 4.1 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.1.0...v4.1.1 +* 4.1.10 (2019-01-06) + + * bug #29494 [HttpFoundation] Fix request uri when it starts with double slashes (alquerci) + * bug #29697 [DI] Fixed wrong factory method in exception (Wojciech Gorczyca) + * bug #29679 [HttpKernel] Correctly Render Signed URIs Containing Fragments (zanbaldwin) + * bug #29754 Ensure final input of CommandTester works with default (Firehed) + * bug #29695 [Form] Do not ignore the choice groups for caching (vudaltsov) + * bug #29738 [Intl] handle null date and time types (xabbuh) + * bug #29708 [FrameworkBundle] access the container getting it from the kernel (xabbuh) + * bug #29704 [FrameworkBundle] improve errors in tests missing the BrowserKit component (xabbuh) + * bug #29617 [Console] Add specific replacement for help text in single command applications (codedmonkey) + * bug #29714 [Event Dispatcher] fixed 29703: TraceableEventDispatcher reset() callStack to null (mlievertz) + * bug #29597 [DI] fix reporting bindings on overriden services as unused (nicolas-grekas) + * bug #29639 [Yaml] detect circular references (xabbuh) + * bug #29626 [Routing] fix trailing slash redirections involving a trailing var (nicolas-grekas) + * bug #29411 [EventDispatcher] Revers event tracing order (ro0NL) + * bug #29533 Fixed public directory when configured in composer.json (alexander-schranz) + * bug #29619 [Console] OutputFormatter: move strtolower to createStyleFromString (ogizanagi) + * bug #29621 [Security] Prefer clone() over unserialize(serialize()) for user refreshment (chalasr) + * bug #29542 [Routing] fix dumping same-path routes with placeholders (nicolas-grekas) + * bug #29587 [Debug] ignore underscore vs backslash namespaces in DebugClassLoader (nicolas-grekas) + * bug #29584 [FrameworkBundle] fix describing routes with no controllers (nicolas-grekas) + * bug #29582 [DI] move RegisterServiceSubscribersPass before DecoratorServicePass (kbond) + * bug #29527 [TwigBridge][Form] Prevent multiple rendering of form collection prototypes (Shoplifter) + * bug #29571 [Yaml] ensures that the mb_internal_encoding is reset to its initial value (Jörn Lang) + * bug #29513 [Hackday][Serializer] Deserialization ignores argument type hint from phpdoc for array in constructor argument (karser) + * bug #29323 [Security] defer log message in guard authenticator (eschultz-magix) + * bug #29531 [Validator] Added IBAN format for Vatican City State (raulfraile) + * bug #29501 [Form] filter out invalid language values (xabbuh) + * bug #29307 [Form] Filter arrays out of scalar form types (nicolas-grekas) + * bug #29500 [Form] filter out invalid Intl values (xabbuh) + * bug #29499 [Validator] Fixed grouped composite constraints (HeahDude) + * 4.1.9 (2018-12-06) * security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh) From 379d48695996d1190eaf1b796b333bb20438b6b2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 6 Jan 2019 17:16:13 +0100 Subject: [PATCH 2/2] updated VERSION for 4.1.10 --- 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 77aafccf619a..e9ed8db3c069 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.1.10-DEV'; + const VERSION = '4.1.10'; const VERSION_ID = 40110; const MAJOR_VERSION = 4; const MINOR_VERSION = 1; const RELEASE_VERSION = 10; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '01/2019'; const END_OF_LIFE = '07/2019';