8000 Merge pull request #63222 from fabpot/release-7.4.5 · symfony/symfony@f8669eb · GitHub
[go: up one dir, main page]

Skip to content

Commit f8669eb

Browse files
authored
Merge pull request #63222 from fabpot/release-7.4.5
released v7.4.5
2 parents 4b50cc3 + b2a0742 commit f8669eb

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.5 (2026-01-28)
11+
12+
* bug #63213 [DependencyInjection] Fix lazy proxy type resolution for decorated services (nicolas-grekas)
13+
* bug #63212 [HttpClient] Fix dealing with truncated streams after headers arrived with CurlHttpClient (nicolas-grekas)
14+
* bug #63208 [PropertyInfo] Fix DocBlock resolution for inherited promoted properties (yoeunes)
15+
* bug #63170 [RateLimiter] Persist state when consuming negative tokens (jhogervorst)
16+
* bug #63137 [HttpFoundation] Fix PdoSessionHandler charset-collation mismatch with the Doctrine DBAL (samy-mahmoudi)
17+
* bug #63211 [HttpClient] Fix dealing with multiple levels of AsyncResponse decoration (nicolas-grekas)
18+
* bug #63202 [Messenger] Only send `UNLISTEN` query if we are actively listening (jwage)
19+
* security #cve-2026-24739 [Process] Fix escaping for MSYS on Windows (nicolas-grekas)
20+
* bug #63206 [PropertyInfo] Conflict with phpdocumentor/reflection-docblock >= 6 (all branches) (nicolas-grekas)
21+
* bug #63204 [PropertyInfo] Fix resolution of self/parent types in inherited DocBlocks (yoeunes)
22+
* bug #63141 [ObjectMapper] apply conditions to constructor arguments (soyuka)
23+
* bug #63195 [FrameworkBundle] Clean `http_cache` dir in `KernelTestCase::ensureKernelShutdown()` (nicolas-grekas)
24+
* bug #63164 [Process] Fix escaping for MSYS on Windows (nicolas-grekas)
25+
* bug #63192 [Finder] Fix appending empty iterators (nicolas-grekas)
26+
* bug #63193 [PropertyInfo] Conflict with phpdocumentor/reflection-docblock >= 6 (branch 6.4 only) (nicolas-grekas)
27+
* bug #63191 [Serializer] Apply `#[Ignore]` to the right metadata (VincentLanglet)
28+
1029
* 7.4.4 (2026-01-24)
1130

1231
* bug #63160 [DependencyInjection] Fix alias chain inversion when deprecated alias points to decorated service (amateescu)

src/Symfony/Component/HttpKernel/Kernel.php

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

77-
public const VERSION = '7.4.5-DEV';
77+
public const VERSION = '7.4.5';
7878
public const VERSION_ID = 70405;
7979
public const MAJOR_VERSION = 7;
8080
public const MINOR_VERSION = 4;
8181
public const RELEASE_VERSION = 5;
82-
public const EXTRA_VERSION = 'DEV';
82+
public const EXTRA_VERSION = '';
8383

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

0 commit comments

Comments
 (0)
0