From 5c3e98b02a524e7ebbeb93184d5272b1d16cf2a6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 6 Dec 2022 18:28:09 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 6.2.1 --- CHANGELOG-6.2.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG-6.2.md b/CHANGELOG-6.2.md index 6e7c970da65a8..4789556444de9 100644 --- a/CHANGELOG-6.2.md +++ b/CHANGELOG-6.2.md @@ -7,6 +7,25 @@ in 6.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/v6.2.0...v6.2.1 +* 6.2.1 (2022-12-06) + + * bug #48502 [DependencyInjection] Fix `ContainerBuilder` stats env usage with enum (alamirault) + * bug #48509 [HttpKernel] Fix using entities with the `#[Cache()]` attribute (HypeMC) + * bug #48505 [Mailer] Fix rendered templates for notifications (fabpot) + * bug #48476 [WebProfilerBundle] Use same color as other icons for the close toolbar btn (ogizanagi) + * bug #48483 [DependencyInjection] Remove refs that point to container.excluded services when allowed (nicolas-grekas) + * bug #48346 [HttpKernel] In DateTimeValueResolver, convert previously defined date attribute to the expected class (GromNaN) + * bug #48450 [WebProfilerBundle] Fix form panel expanders (MatTheCat) + * bug #48459 [FrameworkBundle] [Framework] Fix Infobip Mailer transport factory import (gnito-org) + * bug #48461 [VarExporter] Fix possible memory-leak when using lazy-objects (nicolas-grekas) + * bug #48335 [TwigBridge] Amend `MoneyType` twig to include a space (mogilvie) + * bug #48046 [WebProfilerBundle] Remove redundant code from logger template (HypeMC) + * bug #48428 Fixed undefined variable error (Kevin Meijer) + * bug #48416 [FrameworkBundle] don't register the MailerTestCommand symfony/console is not installed (xabbuh) + * bug #48395 [String] Fix AsciiSlugger with emojis (fancyweb) + * bug #48385 [Security] Reuse `AbstractFactory`'s config tree in `AccessTokenFactory` (chalasr) + * bug #48292 [Security] [LoginLink] Throw InvalidLoginLinkException on missing parameter (MatTheCat) + * 6.2.0 (2022-11-30) * bug #48395 [String] Fix AsciiSlugger with emojis (fancyweb) From 7f0c35687dbd5710b9b25d84b833c54b126acc69 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 6 Dec 2022 18:28:26 +0100 Subject: [PATCH 2/2] Update VERSION for 6.2.1 --- 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 1396b60a9144e..0e99228e0937f 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '6.2.1-DEV'; + public const VERSION = '6.2.1'; public const VERSION_ID = 60201; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 2; public const RELEASE_VERSION = 1; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '07/2023'; public const END_OF_LIFE = '07/2023';