8000 Merge pull request #57580 from fabpot/release-6.4.9 · symfony/symfony@f064b5d · GitHub
[go: up one dir, main page]

Skip to content

Commit f064b5d

Browse files
authored
Merge pull request #57580 from fabpot/release-6.4.9
released v6.4.9
2 parents bc9964b + 36c2d45 commit f064b5d

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.9 (2024-06-28)
11+
12+
* bug #57553 [HttpKernel] Enable optional cache-warmers when cache-dir != build-dir (nicolas-grekas)
13+
* bug #57497 [String] Fixed u()->snake(), b()->snake() and s()->snake() methods (arczinosek)
14+
* bug #57574 [Filesystem] Fix Filesystem::remove() on Windows (nicolas-grekas)
15+
* bug #57572 [DoctrineBridge] Fix compat with DI >= 6.4 (nicolas-grekas)
16+
* bug #57538 [String] Add `alias` case to `EnglishInflector` (alexandre-daubois)
17+
* bug #57533 [FrameworkBundle] Throw runtime exception when trying to use asset-mapper while http-client is disabled (nicolas-grekas)
18+
* bug #57520 [SecurityBundle] Remove unused memory users’ `name` attribute from the XSD (MatTheCat)
19+
* feature #57557 Ibexa is sponsoring Symfony 5.4, thanks to them! \o/ (nicolas-grekas)
20+
* bug #57569 [HttpClient][Mailer] Revert "Let curl handle transfer encoding", use HTTP/1.1 for Mailgun (nicolas-grekas)
21+
* bug #57499 [Mailer] Add additional headers in Scaleway bridge (MrMicky-FR)
22+
* bug #57460 [VarExporter] fix contravariance problem with __unserialize() in lazy proxy (nikophil)
23+
* bug #57397 [VarDumper] Fix FFI caster test (alexandre-daubois)
24+
* bug #57453 [HttpClient] Fix parsing SSE (fancyweb)
25+
* bug #57467 [SecurityBundle] Add `provider` XML attribute to the authenticators it’s missing from (MatTheCat)
26+
* bug #57384 [Notifier] Fix thread key in GoogleChat bridge (romain-jacquart)
27+
* bug #57372 [HttpKernel][Security] Fix accessing session for stateless request (VincentLanglet)
28+
* bug #57112 [Messenger] Handle `AMQPConnectionException` when publishing a message (jwage)
29+
* bug #57341 [Serializer] properly handle invalid data for false/true types (xabbuh)
30+
* bug #57187 [Serializer] Fix `ObjectNormalizer` with property path (HypeMC)
31+
* bug #57355 [ErrorHandler] Fix rendered exception code highlighting on PHP 8.3 (tscni)
32+
* bug #57310 [DependencyInjection] Fix ternary in `AutowireCallable` attribute (alamirault)
33+
* bug #57273 [FrameworkBundle] Fix setting default context for certain normalizers (HypeMC)
34+
* bug #57395 [Notifier]  send the recipient phone number as an array (xabbuh)
35+
* bug #52699 [Serializer] [PropertyAccessor] Ignore non-collection interface generics (mtarld)
36+
* bug #54634 [String] Fix #54611 pluralization of -on ending words + singularization of -a ending foreign words (Geordie, DesLynx)
37+
* bug #57213 [Validator] [UniqueValidator] Use correct variable as parameter in (custom) error message (seho-nl, Sebastien Hoek)
38+
* bug #54920 [Messenger] Comply with Amazon SQS requirements for message body (VincentLanglet)
39+
* bug #57321 [AssetMapper] fix npm version constraint conversion (Jean-Beru)
40+
* bug #57110 [PhpUnitBridge] Fix error handler triggered outside of tests (HypeMC)
41+
* bug #57297 [FrameworkBundle] not registered definitions must not be modified (xabbuh)
42+
* bug #57234 [String] Fix Inflector for 'hardware' (podhy)
43+
* bug #57224 [Mime] Use streams instead of loading raw message generator into memory (bytestream)
44+
1045
* 6.4.8 (2024-06-02)
1146

1247
* bug #57284 [Mime] Fix TextPart using an unknown File (fabpot)

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