From 43c4b16fbd328ba7dba553702df5cbc7700050dd Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Aug 2024 18:57:17 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 6.4.11 --- CHANGELOG-6.4.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/CHANGELOG-6.4.md b/CHANGELOG-6.4.md index 8059eaa560721..56efbaa4a9bbf 100644 --- a/CHANGELOG-6.4.md +++ b/CHANGELOG-6.4.md @@ -7,6 +7,44 @@ in 6.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/v6.4.0...v6.4.1 +* 6.4.11 (2024-08-30) + + * bug #58110 [PropertyAccess] Fix handling property names with a `.` (alexandre-daubois) + * bug #58127 [Validator] synchronize IBAN formats (xabbuh) + * bug #58112 fix Twig 3.12 compatibility (xabbuh) + * bug #58078 [TwigBridge] Fix Twig deprecation notice (yceruto) + * bug #58000 [DependencyInjection] Fix issue between decorator and service locator index (lyrixx) + * bug #58044 [HttpClient] Do not overwrite the host to request when using option "resolve" (xabbuh) + * bug #58046 [AssetMapper] Fix JsDeliver import regexp (smnandre) + * bug #57298 [DependencyInjection] Fix handling of repeated `#[Autoconfigure]` attributes (alexandre-daubois) + * bug #57493 [SecurityBundle] Make security schema deterministic (MatTheCat) + * bug #58025 [Mailer] [Brevo] Support the `unique_proxy_open` event (richardhj) + * bug #58015 [HttpKernel] ESI fragment content may be missing in conditional requests (mpdude) + * bug #58017 [SecurityBundle] Revert adding `_stateless` attribute to the request when firewall is stateless and the attribute is not already set (MatTheCat) + * bug #58020 [TwigBridge] fix compatibility with Twig 3.12 and 4.0 (xabbuh) + * bug #58002 [Security] Revert stateless check for ContextListener (VincentLanglet) + * bug #58010 [PsrHttpMessageBridge] Fix conversion of partitioned cookies in the PSR-7 bridge (stof) + * bug #57853 [Console] Fix side-effects from running bash completions (Seldaek) + * bug #57997 [Console][PhpUnitBridge][VarDumper] Fix handling NO_COLOR env var (nicolas-grekas) + * bug #57944 [DoctrineBridge] Fix the `LockStoreSchemaListener` (MatTheCat) + * bug #57984 [Validator] Add `D` regex modifier in relevant validators (alexandre-daubois) + * bug #57981 [HttpClient] reject malformed URLs with a meaningful exception (xabbuh) + * bug #57968 [Yaml] :bug: throw ParseException on invalid date (homersimpsons) + * bug #57925 [Validator] reset the validation context after validating nested constraints (xabbuh) + * bug #57920 [Form] Fix handling empty data in ValueToDuplicatesTransformer (xabbuh) + * bug #57917 [HttpKernel] [WebProfileBundle] Fix Routing panel for URLs with a colon (akeylimepie) + * bug #57885 [Cache] fix compatibility with redis extension 6.0.3+ (xabbuh) + * bug #57861 [Form] NumberType: Fix parsing of numbers in exponential notation with negative exponent (jbtronics) + * bug #57921 [Finder] do not duplicate directory separators (xabbuh) + * bug #57875 [String] Fixed Quorum plural, and Quora singular in EnglishInflector (Dean151) + * bug #57895 [Finder] do not duplicate directory separators (xabbuh) + * bug #57905 [Validator] allow more unicode characters in URL paths (xabbuh) + * bug #57899 [String] [EnglishInflector] Fix words ending with `le`, e.g., `articles` (aleho) + * bug #57896 [Mime] Fix `RawMessage` constructor argument type (alexandre-daubois) + * bug #57887 [Uid] Ensure UuidV1 is created in lowercase (smnandre) + * bug #57870 [HttpClient] Disable HTTP/2 PUSH by default when using curl (nicolas-grekas) + * bug #57625 [DoctrineBridge] Make `EntityValueResolver` return `null` if a composite ID value is `null` (MatTheCat) + * 6.4.10 (2024-07-26) * bug #57803 [FrameworkBundle] move adding detailed JSON error messages to the validate phase (xabbuh) From ec6f663af43f2e928ad241d34a1d19a1eba49eb4 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Aug 2024 18:57:20 +0200 Subject: [PATCH 2/2] Update VERSION for 6.4.11 --- 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 28b7462e44643..8fa757ffe278e 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.4.11-DEV'; + public const VERSION = '6.4.11'; public const VERSION_ID = 60411; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 4; public const RELEASE_VERSION = 11; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '11/2026'; public const END_OF_LIFE = '11/2027';