Skip to content

Commit e11071c

Browse files
authored
Merge pull request #62689 from fabpot/release-7.4.2
released v7.4.2
2 parents c204a16 + 937e721 commit e11071c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-7.4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.2 (2025-12-08)
11+
12+
* bug #62682 [Serializer][Validator] Attribute metadata no longer requires `container.excluded` tags (HypeMC)
13+
* bug #62685 [DependencyInjection] Fix `PriorityTaggedServiceTrait` when tag attributes are not a list (GromNaN)
14+
1015
* 7.4.1 (2025-12-07)
1116

1217
* bug #62663 [HttpFoundation] Improve logic in Request::createFromGlobals() (nicolas-grekas)

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.2-DEV';
77+
public const VERSION = '7.4.2';
7878
public const VERSION_ID = 70402;
7979
public const MAJOR_VERSION = 7;
8080
public const MINOR_VERSION = 4;
8181
public const RELEASE_VERSION = 2;
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)