Skip to content

Commit d869cc1

Browse files
authored
Merge pull request symfony#58848 from fabpot/release-5.4.47
released v5.4.47
2 parents b8f4116 + d6df8c2 commit d869cc1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG-5.4.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ in 5.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/v5.4.0...v5.4.1
99

10+
* 5.4.47 (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 #58791 [RateLimiter] handle error results of DateTime::modify() (xabbuh)
16+
* bug #58800 [PropertyInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh)
17+
1018
* 5.4.46 (2024-11-06)
1119

1220
* 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
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static $freshCache = [];
8080

81-
public const VERSION = '5.4.47-DEV';
81+
public const VERSION = '5.4.47';
8282
public const VERSION_ID = 50447;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 47;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '11/2024';
8989
public const END_OF_LIFE = '02/2029';

0 commit comments

Comments
 (0)