Skip to content

Commit c175710

Browse files
authored
Merge pull request symfony#54466 from fabpot/release-6.4.6
released v6.4.6
2 parents 91d708f + 4818206 commit c175710

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-6.4.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ 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.6 (2024-04-03)
11+
12+
* bug #54400 [HttpClient] stop all server processes after tests have run (xabbuh)
13+
* bug #54435 [Console] respect multi-byte characters when rendering vertical-style tables (xabbuh)
14+
* bug #54419 Fix TypeError on ProgressBar (Fan2Shrek)
15+
* bug #54425 [TwigBridge] Remove whitespaces from block form_help output (rosier)
16+
* bug #53969 [Mailer] include message id provided by the MTA when dispatching the `SentMessageEvent` (xabbuh)
17+
* bug #54315 [Serializer] Fixed BackedEnumNormalizer priority for translatable enum (IndraGunawan)
18+
* bug #54372 [Config] Fix `YamlReferenceDumper` handling of array examples (MatTheCat)
19+
* bug #54362 [Filesystem] preserve the file modification time when mirroring directories (xabbuh)
20+
* bug #54121 [Messenger] Catch TableNotFoundException in MySQL delete (acbramley)
21+
* bug #54271 [DoctrineBridge] Fix deprecation warning with ORM 3 when guessing field lengths (eltharin)
22+
* bug #54306 Throw TransformationFailedException when there is a null bytes injection (sormes)
23+
* bug #54148 [Serializer] Fix object normalizer when properties has the same name as their accessor (NeilPeyssard)
24+
* bug #54305 [Cache][Lock] Identify missing table in pgsql correctly and address failing integration tests (arifszn)
25+
* bug #54199 [Mailer] [Brevo] Check that tags is present in payload before calling setTags (palgalik)
26+
* bug #54292 [FrameworkBundle] Fix mailer config with XML (lyrixx)
27+
* bug #54298 [Filesystem] Fix str_contains deprecation (NeilPeyssard)
28+
* bug #54248 [Security] Correctly initialize the voter property (aschempp)
29+
* bug #54273 [DependencyInjection] fix XmlDumper when a tag contains also a 'name' property (lyrixx)
30+
* bug #54191 [Validator] add missing invalid extension error entry (xabbuh)
31+
* bug #54194 [PropertyAccess] Fix checking for missing properties (nicolas-grekas)
32+
* bug #54201 [Lock] Check the correct SQLSTATE error code for MySQL (edomato)
33+
* bug #54252 [Lock] compatiblity with redis cluster 7 (bastnic)
34+
* bug #54124 [Messenger] trigger retry logic when message is a redelivery (nikophil)
35+
* bug #54254 [HttpKernel] Fix creating `ReflectionMethod` with only one argument (alexandre-daubois)
36+
* bug #54219 [Validator] Allow BICs’ first four characters to be digits (MatTheCat)
37+
* bug #54239 [Mailer] Fix sendmail transport not handling failure (aboks)
38+
* bug #54207 [HttpClient] Lazily initialize CurlClientState (arjenm)
39+
* bug #53865 [Workflow]Fix Marking when it must contains more than one tokens (lyrixx)
40+
* bug #54137 [Validator] UniqueValidator - normalize before reducing keys (Brajk19)
41+
* bug #54187 [FrameworkBundle] Fix PHP 8.4 deprecation on `ReflectionMethod` (alexandre-daubois)
42+
* bug #54167 [Messenger] [Amqp] Handle AMQPConnectionException when publishing a message. (jwage)
43+
* bug #54146 [HttpClient] Preserve float in JsonMockResponse (Jibbarth)
44+
1045
* 6.4.5 (2024-03-04)
1146

1247
* bug #54113 [AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre)

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.6-DEV';
79+
public const VERSION = '6.4.6';
8080
public const VERSION_ID = 60406;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 6;
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)