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

Skip to content

Commit cfb00ec

Browse files
authored
Merge pull request #58849 from fabpot/release-6.4.15
released v6.4.15
2 parents 591a134 + a5f21a2 commit cfb00ec

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-6.4.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.15 (2024-11-13)
11+
12+
* security #cve-2024-50342 [HttpClient] Resolve hostnames in NoPrivateNetworkHttpClient (nicolas-grekas)
13+
* security #cve-2024-51996 [Security] Check owner of persisted remember-me cookie (jderusse)
14+
* bug #58799 [String] Fix some spellings in `EnglishInflector` (alexandre-daubois)
15+
* bug #56868 [Serializer] fixed object normalizer for a class with `cancel` method (er1z)
16+
* bug #58601 [RateLimiter] Fix bucket size reduced when previously created with bigger size (Orkin)
17+
* bug #58659 [AssetMapper] Fix `JavaScriptImportPathCompiler` regex for non-latin characters (GregRbs92)
18+
* bug #58658 [Twitter][Notifier] Fix post INIT upload (matyo91)
19+
* bug #58763 [Messenger][RateLimiter] fix additional message handled when using a rate limiter (Jean-Beru)
20+
* bug #58791 [RateLimiter] handle error results of DateTime::modify() (xabbuh)
21+
* bug #58800 [PropertyInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh)
22+
1023
* 6.4.14 (2024-11-06)
1124

1225
* bug #58772 [DoctrineBridge] Backport detection fix of Xml/Yaml driver in DoctrineExtension (MatTheCat)

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