From 94f492ed23305d95157eef90c7302d04504585b2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 27 May 2023 23:16:31 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 6.3.0-RC2 --- CHANGELOG-6.3.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG-6.3.md b/CHANGELOG-6.3.md index 7e4cfd89e244..73ef0487e49f 100644 --- a/CHANGELOG-6.3.md +++ b/CHANGELOG-6.3.md @@ -7,6 +7,19 @@ in 6.3 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.3.0...v6.3.1 +* 6.3.0-RC2 (2023-05-27) + + * feature #50445 [AssetMapper] Add "=alias" syntax to importmap:require (weaverryan) + * bug #50442 [SecurityBundle] Update security-1.0.xsd to include missing access-token definition (aegypius) + * bug #50440 [DependencyInjection] Revert "Use weak references in the container" (nicolas-grekas) + * bug #50429 [Console] block input stream if needed (joelwurtz) + * bug #50397 [HttpKernel][VarDumper] Fix dumping with labels (nicolas-grekas) + * bug #50408 [AssetMapper] Change default importmap "provider" to JsDelivr+esm (weaverryan, nicolas-grekas) + * bug #50394 [AssetMapper] Avoid loading potentially ALL assets in dev server (weaverryan) + * bug #50400 [AssetMapper] Sometimes asset contents are built from non-asset files (weaverryan) + * bug #50406 [VarDumper] Fix `dd()` showing line with `null` (HypeMC) + * bug #50393 [AssetMapper] Fixing incorrect exception & adding allowing more realistic error mode (weaverryan) + * 6.3.0-RC1 (2023-05-22) * bug #49817 [Scheduler] Improve triggers performance when possible (fabpot) From 60588cc1d7a3c5af3849e5f8dc63778d68fd0a19 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 27 May 2023 23:16:36 +0200 Subject: [PATCH 2/2] Update VERSION for 6.3.0-RC2 --- 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 f9a969b65913..0bd152bc8208 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 array $freshCache = []; - public const VERSION = '6.3.0-DEV'; + public const VERSION = '6.3.0-RC2'; public const VERSION_ID = 60300; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = 'RC2'; public const END_OF_MAINTENANCE = '01/2024'; public const END_OF_LIFE = '01/2024';