From ee8d11451b075f1fd3138ce402f9cd8784017679 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 15 Jun 2020 15:51:15 +0200 Subject: [PATCH 1/2] updated CHANGELOG for 5.1.2 --- CHANGELOG-5.1.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG-5.1.md b/CHANGELOG-5.1.md index 4f34853bc8b9..54abc070fac2 100644 --- a/CHANGELOG-5.1.md +++ b/CHANGELOG-5.1.md @@ -7,6 +7,16 @@ in 5.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/v5.1.0...v5.1.1 +* 5.1.2 (2020-06-15) + + * bug #37265 [HttpFoundation] use InputBag for Request::$request only if data is coming from a form (nicolas-grekas) + * bug #37283 [SecurityBundle] Fix CookieClearingLogoutListener DI configuration (wouterj) + * bug #37160 Reset question validator attempts only for actual stdin (ostrolucky) + * bug #36975 [PropertyInfo] Make PhpDocExtractor compatible with phpDocumentor v5 (DerManoMann) + * bug #37279 [Form] Fixed prototype block prefixes hierarchy of the CollectionType (yceruto) + * bug #37276 [Form] Fixed block prefixes hierarchy of the CollectionType (yceruto) + * bug #37261 Fix register csrf protection listener (Ne-Lexa) + * 5.1.1 (2020-06-12) * bug #37227 [DependencyInjection][CheckTypeDeclarationsPass] Handle unresolved parameters pointing to environment variables (fancyweb) From 04f054e44c697a2fc90900048423872959ab4c1c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 15 Jun 2020 15:51:38 +0200 Subject: [PATCH 2/2] updated VERSION for 5.1.2 --- 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 819010308219..178585762db2 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 static $freshCache = []; - const VERSION = '5.1.2-DEV'; + const VERSION = '5.1.2'; const VERSION_ID = 50102; const MAJOR_VERSION = 5; const MINOR_VERSION = 1; const RELEASE_VERSION = 2; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '01/2021'; const END_OF_LIFE = '01/2021';