Skip to content

Commit 658b70d

Browse files
authored
Merge pull request symfony#58132 from fabpot/release-6.4.11
released v6.4.11
2 parents 799283d + ec6f663 commit 658b70d

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

CHANGELOG-6.4.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ in 6.4 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.4.0...v6.4.1
99

10+
* 6.4.11 (2024-08-30)
11+
12+
* bug #58110 [PropertyAccess] Fix handling property names with a `.` (alexandre-daubois)
13+
* bug #58127 [Validator] synchronize IBAN formats (xabbuh)
14+
* bug #58112 fix Twig 3.12 compatibility (xabbuh)
15+
* bug #58078 [TwigBridge] Fix Twig deprecation notice (yceruto)
16+
* bug #58000 [DependencyInjection] Fix issue between decorator and service locator index (lyrixx)
17+
* bug #58044 [HttpClient] Do not overwrite the host to request when using option "resolve" (xabbuh)
18+
* bug #58046 [AssetMapper] Fix JsDeliver import regexp (smnandre)
19+
* bug #57298 [DependencyInjection] Fix handling of repeated `#[Autoconfigure]` attributes (alexandre-daubois)
20+
* bug #57493 [SecurityBundle] Make security schema deterministic (MatTheCat)
21+
* bug #58025 [Mailer] [Brevo] Support the `unique_proxy_open` event (richardhj)
22+
* bug #58015 [HttpKernel] ESI fragment content may be missing in conditional requests (mpdude)
23+
* bug #58017 [SecurityBundle] Revert adding `_stateless` attribute to the request when firewall is stateless and the attribute is not already set (MatTheCat)
24+
* bug #58020 [TwigBridge] fix compatibility with Twig 3.12 and 4.0 (xabbuh)
25+
* bug #58002 [Security] Revert stateless check for ContextListener (VincentLanglet)
26+
* bug #58010 [PsrHttpMessageBridge] Fix conversion of partitioned cookies in the PSR-7 bridge (stof)
27+
* bug #57853 [Console] Fix side-effects from running bash completions (Seldaek)
28+
* bug #57997 [Console][PhpUnitBridge][VarDumper] Fix handling NO_COLOR env var (nicolas-grekas)
29+
* bug #57944 [DoctrineBridge] Fix the `LockStoreSchemaListener` (MatTheCat)
30+
* bug #57984 [Validator] Add `D` regex modifier in relevant validators (alexandre-daubois)
31+
* bug #57981 [HttpClient] reject malformed URLs with a meaningful exception (xabbuh)
32+
* bug #57968 [Yaml] :bug: throw ParseException on invalid date (homersimpsons)
33+
* bug #57925 [Validator] reset the validation context after validating nested constraints (xabbuh)
34+
* bug #57920 [Form] Fix handling empty data in ValueToDuplicatesTransformer (xabbuh)
35+
* bug #57917 [HttpKernel] [WebProfileBundle] Fix Routing panel for URLs with a colon (akeylimepie)
36+
* bug #57885 [Cache] fix compatibility with redis extension 6.0.3+ (xabbuh)
37+
* bug #57861 [Form] NumberType: Fix parsing of numbers in exponential notation with negative exponent (jbtronics)
38+
* bug #57921 [Finder] do not duplicate directory separators (xabbuh)
39+
* bug #57875 [String] Fixed Quorum plural, and Quora singular in EnglishInflector (Dean151)
40+
* bug #57895 [Finder] do not duplicate directory separators (xabbuh)
41+
* bug #57905 [Validator] allow more unicode characters in URL paths (xabbuh)
42+
* bug #57899 [String] [EnglishInflector] Fix words ending with `le`, e.g., `articles` (aleho)
43+
* bug #57896 [Mime] Fix `RawMessage` constructor argument type (alexandre-daubois)
44+
* bug #57887 [Uid] Ensure UuidV1 is created in lowercase (smnandre)
45+
* bug #57870 [HttpClient] Disable HTTP/2 PUSH by default when using curl (nicolas-grekas)
46+
* bug #57625 [DoctrineBridge] Make `EntityValueResolver` return `null` if a composite ID value is `null` (MatTheCat)
47+
1048
* 6.4.10 (2024-07-26)
1149

1250
* bug #57803 [FrameworkBundle] move adding detailed JSON error messages to the validate phase (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.4.11-DEV';
79+
public const VERSION = '6.4.11';
8080
public const VERSION_ID = 60411;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 11;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '11/2026';
8787
public const END_OF_LIFE = '11/2027';

0 commit comments

Comments
 (0)