Skip to content

Commit 3b6a231

Browse files
authored
Merge pull request #62382 from fabpot/release-7.4.0-RC1
released v7.4.0-RC1
2 parents 14192e9 + e67c438 commit 3b6a231

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

CHANGELOG-7.4.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ 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-RC1 (2025-11-13)
11+
12+
* bug #62335 [Console] Fix signal handlers not being cleared after command termination (yoeunes)
13+
* bug #62348 [Translation][Lokalise] fix "Project too big for sync export" (santysisi)
14+
* bug #62304 [DependencyInjection] Fix lazy proxy creation for interfaces aliased to final classes (yoeunes)
15+
* bug #62036 [HttpKernel] Fix StreamedResponse with chunks support in HttpKernelBrowser (wuchen90)
16+
* bug #62063 [JsonStreamer] Rebuild cache on class update (mtarld)
17+
* bug #62287 [HttpFoundation] Fix AcceptHeader overwrites items with different parameters (yoeunes)
18+
* bug #62325 [Routing] Fix default value not taken if usigng name:entity.attribute (eltharin)
19+
* bug #62329 [DependencyInjection] Fix merging explicit tags and #[AsTaggeditem] (nicolas-grekas)
20+
* bug #62356 [HttpClient] Fix `Warning: curl_multi_select(): timeout must be positive` (Jeroeny)
21+
* bug #62334 [PropertyInfo] Fix `ReflectionExtractor` handling of underscore-only property names (yoeunes)
22+
* bug #58473 [Serializer] Fix `AbstractObjectNormalizer` to allow scalar values to be normalized (Hanmac, xabbuh)
23+
* bug #62093 [Security] Fix `HttpUtils::createRequest()` when the context’s base URL isn’t empty (MatTheCat)
24+
* bug #62007 [Serializer] fix inherited properties normalization (Link1515)
25+
* bug #62286 [Cache] compatibility with ext-redis 6.3 (xabbuh)
26+
* bug #62321 [Serializer] Fix BackedEnumNormalizer behavior with partial denormalization (yoeunes)
27+
* bug #62344 [OptionsResolver] Fix missing prototype key in nested error paths (yoeunes)
28+
* bug #62346 [Clock] Align MockClock::sleep() behavior with NativeClock for negative values (yoeunes)
29+
* bug #62347 [OptionsResolver] Ensure remove() also unsets deprecation status (yoeunes)
30+
* bug #62359 [Yaml] Fix parsing of unquoted multiline scalars with comments or blank lines (yoeunes)
31+
* bug #62350 [ExpressionLanguage] Compile numbers with var_export in Compiler::repr for thread-safety (yoeunes)
32+
* security #cve-2025-64500 [HttpFoundation] Fix parsing pathinfo with no leading slash (nicolas-grekas)
33+
* bug #62333 Postal mailer transport message ID retrieval (lalcebo)
34+
* feature #62326 [Cache][Messenger] re-allow ext-redis 6.1 (xabbuh)
35+
* bug #62324 [HttpFoundation] Fix parsing hosts and schemes in URLs (nicolas-grekas)
36+
* bug #62171 [Messenger] Fix commands writing to `STDERR` instead of `STDOUT` (wazum)
37+
* bug #62315 Keep body size limit for AMP redirects (villermen)
38+
* bug #62214 [ObjectMapper] lazy loading (soyuka)
39+
* bug #62237 [Form] Fix EnumType choice_label logic for grouped choices (yoeunes)
40+
* bug #62283 [Filesystem] Unify logic for isAbsolute() in Path (yoeunes)
41+
* feature #62302 [Routing] Simplify importing routes defined on controller services (nicolas-grekas)
42+
* bug #62091 [BrowserKit] The BrowserKit history with parameter separator without slash. (biozshock)
43+
* bug #62297 [Twig] Ensure WrappedTemplatedEmail::getReturnPath() returns a string (yoeunes)
44+
* bug #62294 [Console] Add missing VERBOSITY_SILENT case in CommandDataCollector (yoeunes)
45+
* bug #62290 [Routing] Fix matching the "0" URL (cs278)
46+
* bug #62285 [HttpClient] Reject 3xx pushed responses (nicolas-grekas)
47+
1048
* 7.4.0-BETA2 (2025-11-02)
1149

1250
* feature #62270 [Lock][DynamoDB] Allow symfony/lock 8.0 (DavidPrevot)

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-RC1';
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 = 'RC1';
8282

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

0 commit comments

Comments
 (0)