Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6436e37

Browse filesBrowse files
authored
data #64370 Release v5.4.53
Release v5.4.53
2 parents 511a86c + b54c465 commit 6436e37
Copy full SHA for 6436e37

2 files changed

+12-3Lines changed: 12 additions & 3 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎CHANGELOG-5.4.md‎

Copy file name to clipboardExpand all lines: CHANGELOG-5.4.md
+9Lines changed: 9 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ 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.53 (2026-05-27)
11+
12+
* security #cve-2026-48736 [HttpClient] Block IPv6 transition forms in NoPrivateNetworkHttpClient (nicolas-grekas)
13+
* security #cve-2026-48489 [Security] Don't honor user-supplied _failure_path on failure_forward (nicolas-grekas)
14+
* security #cve-2026-48784 [Routing] Fix dot-segment encoding for chained "../" and "./" in generated URLs (nicolas-grekas)
15+
* bug #64346 [Runtime] Trust argv on CLI-like SAPIs to fix subprocess args (nicolas-grekas)
16+
* bug #64336 [Cache] Accept '_' and ':' in prefix passed to AbstractAdapter::clear() (nicolas-grekas)
17+
* bug #64316 [Yaml] Allow trailing newlines after the end-of-document marker (nicolas-grekas)
18+
1019
* 5.4.52 (2026-05-20)
1120

1221
* security #cve-2026-46626 [Runtime] Fix CVE-2024-50340 patch bypass by gating argv on $_SERVER['QUERY_STRING'] (nicolas-grekas)
Collapse file

‎src/Symfony/Component/HttpKernel/Kernel.php‎

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static $freshCache = [];
8080

81-
public const VERSION = '5.4.52';
82-
public const VERSION_ID = 50452;
81+
public const VERSION = '5.4.53';
82+
public const VERSION_ID = 50453;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
85-
public const RELEASE_VERSION = 52;
85+
public const RELEASE_VERSION = 53;
8686
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '11/2024';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.