From 47d722b9009abf26456b68f2a70de1f3c62509e3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 4 Mar 2024 22:05:20 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 7.0.5 --- CHANGELOG-7.0.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG-7.0.md b/CHANGELOG-7.0.md index 833ffb3f6f96..2dd0c8b206cc 100644 --- a/CHANGELOG-7.0.md +++ b/CHANGELOG-7.0.md @@ -7,6 +7,16 @@ 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.5 (2024-03-04) + + * bug #54113 [AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre) + * bug #54129 [Clock] Add attributes to support PHPUnit 10 + 11 (ruudk) + * bug #54079 [AssetMapper] Fix `JavaScriptImportPathCompiler` regression in regex (PhilETaylor) + * bug #54102 [HttpClient] Fix deprecation on PHP 8.3 (nicolas-grekas) + * bug #54089 [Mailer] [Brevo] Remove tags from mandatory event arguments (palgalik) + * bug #54081 [DoctrineBridge] Safeguard dynamic access to Doctrine metadata properties (derrabus) + * bug #54080 [Routing] Enhance error handling in StaticPrefixCollection for compatibility with libpcre2-10.43 (Lustmored) + * 7.0.4 (2024-02-27) * bug #53985 [HttpKernel] Allow tagged controllers in ControllerResolver (marein) From f3ecda492231be26467052a8b24e92795ef282e7 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 4 Mar 2024 22:05:24 +0100 Subject: [PATCH 2/2] Update VERSION for 7.0.5 --- 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 d9437615a622..9ef02f3b8613 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.5-DEV'; + public const VERSION = '7.0.5'; public const VERSION_ID = 70005; public const MAJOR_VERSION = 7; public const MINOR_VERSION = 0; public const RELEASE_VERSION = 5; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '07/2024'; public const END_OF_LIFE = '07/2024';