From feb5e6668aa3f8e471db9ea84ade75f98916ccf6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 15 Nov 2023 17:13:43 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 7.0.0-RC1 --- CHANGELOG-7.0.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG-7.0.md b/CHANGELOG-7.0.md index d81826a434464..b71c7da646673 100644 --- a/CHANGELOG-7.0.md +++ b/CHANGELOG-7.0.md @@ -7,6 +7,17 @@ in 7.0 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/v7.0.0...v7.0.1 +* 7.0.0-RC1 (2023-11-15) + + * bug #52597 [DependencyInjection] Fix dumping containers with null-referenced services (nicolas-grekas) + * bug #52588 [Messenger] Use extension_loaded call to check if pcntl extension is loaded, as SIGTERM might be set be swoole (Sergii Dolgushev) + * feature #52569 [VarExporter] Drop support for partially initialized lazy object (nicolas-grekas) + * bug #52567 [AssetMapper] Fixing js sourceMappingURL extraction when sourceMappingURL used in code (weaverryan) + * bug #52579 [DomCrawler] UriResolver support path with colons (vdauchy) + * bug #52581 [Messenger] attach all required parameters to query (xabbuh) + * feature #52568 [VarExporter] Deprecate per-property lazy-initializers (nicolas-grekas) + * feature #52560 [Mailer] Update default Mailjet port (Katario) + * 7.0.0-BETA3 (2023-11-10) * bug #51666 [RateLimiter] CompoundLimiter was accepting requests even when some limiters already consumed all tokens (10n) From 936caaa692621dc4834ed3647307aa6b192fe3f6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 15 Nov 2023 17:13:47 +0100 Subject: [PATCH 2/2] Update VERSION for 7.0.0-RC1 --- 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 db2c1de9cc351..385b73e7f0fc7 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 = '7.0.0-DEV'; + public const VERSION = '7.0.0-RC1'; public const VERSION_ID = 70000; public const MAJOR_VERSION = 7; public const MINOR_VERSION = 0; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = 'RC1'; public const END_OF_MAINTENANCE = '07/2024'; public const END_OF_LIFE = '07/2024';