File tree Expand file tree Collapse file tree
Open diff view settings
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree
Open diff view settings
Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ in 5.4 minor versions.
77To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88To 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)
Original file line number Diff line number Diff 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 ' ;
You can’t perform that action at this time.
0 commit comments