Skip to content

Commit f4804d5

Browse files
authored
Merge pull request #62413 from fabpot/release-7.4.0-RC2
released v7.4.0-RC2
2 parents f7e044a + fc7f4f1 commit f4804d5

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG-7.4.md

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

10+
* 7.4.0-RC2 (2025-11-16)
11+
12+
* bug #62411 [HttpKernel] Conflict with symfony/flex < 2.10 (nicolas-grekas)
13+
* bug #62409 [Yaml] Align unquoted multiline scalar parsing with spec for comments (yoeunes)
14+
* bug #62398 [Cache] Fix accepting named closures as early-expiration callbacks (nicolas-grekas)
15+
* bug #62406 [Notifier] do not use recipient phone numbers as sender e-mail addresses (xabbuh)
16+
* bug #62407 [FrameworkBundle] work around limitation in `JsonResponse` when the data is `null` (xabbuh)
17+
* bug #62402 [FrameworkBundle] Revert auto-import of #[Route] defined on controllers (nicolas-grekas)
18+
* bug #62400 [Form] Fix EnumType choice_label logic for grouped choices (yoeunes)
19+
* bug #62369 [Security] Set OIDC JWKS cache TTL from provider headers (Ali-HENDA)
20+
* bug #62393 [Dependencyinjection] Call default index method when index is not provided by tag (yoeunes)
21+
* bug #62372 [Cache] Recognize saveDeferred events as writes in `CacheDataCollector` (yitznewton)
22+
* bug #62389 [Routing] Align routing.schema.json with YamlFileLoader behavior (yoeunes)
23+
1024
* 7.4.0-RC1 (2025-11-13)
1125

1226
* bug #62335 [Console] Fix signal handlers not being cleared after command termination (yoeunes)

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.4.0-DEV';
76+
public const VERSION = '7.4.0-RC2';
7777
public const VERSION_ID = 70400;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 4;
8080
public const RELEASE_VERSION = 0;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = 'RC2';
8282

8383
public const END_OF_MAINTENANCE = '11/2028';
8484
public const END_OF_LIFE = '11/2029';

0 commit comments

Comments
 (0)