8000 Merge pull request #58777 from fabpot/release-5.4.46 · symfony/symfony@057d88b · GitHub
[go: up one dir, main page]

Skip to content

Commit 057d88b

Browse files
authored
Merge pull request #58777 from fabpot/release-5.4.46
released v5.4.46
2 parents 34bc3da + b9f84fb commit 057d88b

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG-5.4.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ 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.46 (2024-11-06)
11+
12+
* bug #58772 [DoctrineBridge] Backport detection fix of Xml/Yaml driver in DoctrineExtension (MatTheCat)
13+
* security #cve-2024-51736 [Process] Use PATH before CD to load the shell on Windows (nicolas-grekas)
14+
* security #cve-2024-50342 [HttpClient] Filter private IPs before connecting when Host == IP (nicolas-grekas)
15+
* security #cve-2024-50345 [HttpFoundation] Reject URIs that contain invalid characters (nicolas-grekas)
16+
* security #cve-2024-50340 [Runtime] Do not read from argv on non-CLI SAPIs (wouterj)
17+
* bug #58765 [VarDumper] fix detecting anonymous exception classes on Windows and PHP 7 (xabbuh)
18+
* bug #58757 [RateLimiter] Fix DateInterval normalization (danydev)
19+
* bug #58754 [Security] Store original token in token storage when implicitly exiting impersonation (wouterj)
20+
* bug #58753 [Cache] Fix clear() when using Predis (nicolas-grekas)
21+
* bug #58713 [Config] Handle Phar absolute path in `FileLocator` (alexandre-daubois)
22+
* bug #58739 [WebProfilerBoundle] form data collector check passed and resolved options are defined (vltrof)
23+
* bug #58752 [Process] Fix escaping /X arguments on Windows (nicolas-grekas)
24+
* bug #58735 [Process] Return built-in cmd.exe commands directly in ExecutableFinder (Seldaek)
25+
* bug #58723 [Process] Properly deal with not-found executables on Windows (nicolas-grekas)
26+
* bug #58711 [Process] Fix handling empty path found in the PATH env var with ExecutableFinder (nicolas-grekas)
27+
1028
* 5.4.45 (2024-10-27)
1129

1230
* bug #58669 [Cache] Revert "Initialize RedisAdapter cursor to 0" (nicolas-grekas)

CONTRIBUTORS.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,7 @@ The Symfony Connect username in parenthesis allows to get more information
853853
- Robert-Jan de Dreu
854854
- Fabrice Bernhard (fabriceb)
855855
- Matthijs van den Bos (matthijs)
856+
- Markus S. (staabm)
856857
- Bhavinkumar Nakrani (bhavin4u)
857858
- Jaik Dean (jaikdean)
858859
- Krzysztof Piasecki (krzysztek)
@@ -946,6 +947,7 @@ The Symfony Connect username in parenthesis allows to get more information
946947
- Julien Boudry
947948
- vitaliytv
948949
- Franck RANAIVO-HARISOA (franckranaivo)
950+
- Yi-Jyun Pan
949951
- Egor Taranov
950952
- Andreas Hennings
951953
- Arnaud Frézet
@@ -1474,7 +1476,6 @@ The Symfony Connect username in parenthesis allows to get more information
14741476
- Marcos Gómez Vilches (markitosgv)
14751477
- Matthew Davis (mdavis1982)
14761478
- Paulo Ribeiro (paulo)
1477-
- Markus S. (staabm)
14781479
- Marc Laporte
14791480
- Michał Jusięga
14801481
- Kay Wei
@@ -1544,7 +1545,6 @@ The Symfony Connect username in parenthesis allows to get more information
15441545
- Mihail Krasilnikov (krasilnikovm)
15451546
- Uladzimir Tsykun
15461547
- iamvar
1547-
- Yi-Jyun Pan
15481548
- Amaury Leroux de Lens (amo__)
15491549
- Rene de Lima Barbosa (renedelima)
15501550
- Christian Jul Jensen
@@ -1615,6 +1615,7 @@ The Symfony Connect username in parenthesis allows to get more information
16151615
- ttomor
16161616
- Mei Gwilym (meigwilym)
16171617
- Michael H. Arieli
1618+
- Miloš Milutinović
16181619
- Jitendra Adhikari (adhocore)
16191620
- Nicolas Martin (cocorambo)
16201621
- Tom Panier (neemzy)
@@ -2941,6 +2942,7 @@ The Symfony Connect username in parenthesis allows to get more information
29412942
- Walther Lalk
29422943
- Adam
29432944
- Ivo
2945+
- vltrof
29442946
- Ismo Vuorinen
29452947
- Markus Staab
29462948
- Valentin
@@ -3588,10 +3590,12 @@ The Symfony Connect username in parenthesis allows to get more information
35883590
- Sean Templeton
35893591
- Willem Mouwen
35903592
- db306
3593+
- Dr. Gianluigi "Zane" Zanettini
35913594
- Michaël VEROUX
35923595
- Julia
35933596
- Lin Lu
35943597
- arduanov
3598+
- Valmonzo
35953599
- sualko
35963600
- Marc Bennewitz
35973601
- Fabien

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.46-DEV';
81+
public const VERSION = '5.4.46';
8282
public const VERSION_ID = 50446;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 46;
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)
0