Skip to content

Commit 77724f0

Browse files
authored
Merge pull request #62467 from fabpot/release-7.4.0-RC3
released v7.4.0-RC3
2 parents bee0f44 + ffe6cc8 commit 77724f0

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG-7.4.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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-RC3 (2025-11-21)
11+
12+
* bug #62454 [ObjectMapper] mapping of nested classes with promoted read-only properties (soyuka)
13+
* bug #62456 [AssetMapper] Fix entrypoint status lost during update (yoeunes)
14+
* bug #62416 [Console] Fix completion for global options values (HypeMC)
15+
* bug #62455 [ObjectMapper] map to embedded object with property access (soyuka)
16+
* bug #62458 [Workflow] Fix `MethodMarkingStore` crash with inherited uninitialized properties (yoeunes)
17+
* bug #62459 [Routing] Fix case sensitivity for static host matching in compiled routes (yoeunes)
18+
* bug #62461 [Routing] Fix localized prefix updates breaking aliases (yoeunes)
19+
* bug #62460 [Routing] Fix addNamePrefix breaking aliases to external routes (yoeunes)
20+
* bug #62453 [FrameworkBundle] Make `APP_*_DIR` relative to the project directory (nicolas-grekas)
21+
* bug #62447 [Form] Mark FormFlow as finished if the last step is skipped (yceruto)
22+
* bug #62436 [FrameworkBundle] Dump all registered extensions’ configuration reference (MatTheCat)
23+
* bug #62449 [HttpKernel] Fix using MapRequestPayload on nullable arguments (nicolas-grekas)
24+
* bug #62415 [HttpClient] Don't reset unused clients in data collector (HypeMC)
25+
* bug #62417 [ObjectMapper] bypass lazy ghost with class transform (soyuka)
26+
* bug #62437 [DependencyInjection] Fix preloading `LazyClosure` (nicolas-grekas)
27+
* bug #62441 [WebProfilerBundle] fix displaying runner (94noni)
28+
1029
* 7.4.0-RC2 (2025-11-16)
1130

1231
* bug #62411 [HttpKernel] Conflict with symfony/flex < 2.10 (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.4.0-DEV';
76+
public const VERSION = '7.4.0-RC3';
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 = 'RC3';
8282

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

0 commit comments

Comments
 (0)