Skip to content

Commit 9b39f73

Browse files
authored
Merge pull request #62366 from fabpot/release-7.3.7
released v7.3.7
2 parents 7034eab + 2be828b commit 9b39f73

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-7.3.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 7.3 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/v7.3.0...v7.3.1
99

10+
* 7.3.7 (2025-11-12)
11+
12+
* security #cve-2025-64500 [HttpFoundation] Fix parsing pathinfo with no leading slash (nicolas-grekas)
13+
* bug #62333 Postal mailer transport message ID retrieval (lalcebo)
14+
1015
* 7.3.6 (2025-11-06)
1116

1217
* bug #62324 [HttpFoundation] Fix parsing hosts and schemes in URLs (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
*/
7474
private static array $freshCache = [];
7575

76-
public const VERSION = '7.3.7-DEV';
76+
public const VERSION = '7.3.7';
7777
public const VERSION_ID = 70307;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 3;
8080
public const RELEASE_VERSION = 7;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '01/2026';
8484
public const END_OF_LIFE = '01/2026';

0 commit comments

Comments
 (0)