From 2794ebbff896e6b8e0e5583072fa973a30d5b05f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 26 Jul 2021 19:31:37 +0200 Subject: [PATCH 1/4] Bump Symfony version to 4.4.28 --- src/Symfony/Component/HttpKernel/Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index bd312e77f849..08ee0db83d72 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '4.4.27'; - public const VERSION_ID = 40427; + public const VERSION = '4.4.28-DEV'; + public const VERSION_ID = 40428; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 27; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 28; + public const EXTRA_VERSION = 'DEV'; public const END_OF_MAINTENANCE = '11/2022'; public const END_OF_LIFE = '11/2023'; From 457c86394dbde178d7cca87209798551130ab08d Mon Sep 17 00:00:00 2001 From: "anton.z" Date: Mon, 26 Jul 2021 22:30:25 +0300 Subject: [PATCH 2/4] [WebProfiler] "empty" filter bugfix. Filter with name "empty" is not exists in twig. --- .../Resources/views/Collector/mailer.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/mailer.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/mailer.html.twig index 1ecf70f6b9d1..3c2e1bc8eb96 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/mailer.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/mailer.html.twig @@ -67,7 +67,7 @@ {% block menu %} {% set events = collector.events %} - + {{ include('@WebProfiler/Icon/mailer.svg') }} E-mails From 5e56b360c1fc35de6256633ff149cc27474e27a6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Jul 2021 06:31:28 +0200 Subject: [PATCH 3/4] Update CHANGELOG for 4.4.28 --- CHANGELOG-4.4.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-4.4.md b/CHANGELOG-4.4.md index 51296d5ce65c..b1baa0f18dd9 100644 --- a/CHANGELOG-4.4.md +++ b/CHANGELOG-4.4.md @@ -7,6 +7,10 @@ in 4.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/v4.4.0...v4.4.1 +* 4.4.28 (2021-07-27) + + * bug #42270 [WebProfilerBundle] [WebProfiler] "empty" filter bugfix. Filter with name "empty" is not … (luzrain) + * 4.4.27 (2021-07-26) * bug #42212 [Lock] Handle lock with long key (jderusse) From 0afeac3f51850e7763b9bd1526799b4a2b6f4a20 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Jul 2021 06:31:34 +0200 Subject: [PATCH 4/4] Update VERSION for 4.4.28 --- 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 08ee0db83d72..df0874eb9edc 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '4.4.28-DEV'; + public const VERSION = '4.4.28'; public const VERSION_ID = 40428; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 4; public const RELEASE_VERSION = 28; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '11/2022'; public const END_OF_LIFE = '11/2023';