Skip to content

Commit a3c8156

Browse files
authored
Merge pull request symfony#59171 from fabpot/release-7.2.1
released v7.2.1
2 parents fc6186c + f9a8854 commit a3c8156

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG-7.2.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ in 7.2 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.2.0...v7.2.1
99

10+
* 7.2.1 (2024-12-11)
11+
12+
* bug #59145 [TypeInfo] Make `Type::nullable` method no-op on every nullable type (mtarld)
13+
* bug #59122 [Notifier] fix desktop channel bus abstract arg (raphael-geffroy)
14+
* bug #59124 [FrameworkBundle] fix: notifier push channel bus abstract arg (raphael-geffroy)
15+
* bug #59069 [Console] Fix division by 0 error (Rindula)
16+
* bug #59086 [FrameworkBundle] Make uri_signer lazy and improve error when kernel.secret is empty (nicolas-grekas)
17+
* bug #59099 [sendgrid-mailer] Fix null check on region (AUDUL)
18+
* bug #59070 [PropertyInfo] evaluate access flags for properties with asymmetric visibility (xabbuh)
19+
* bug #59062 [HttpClient] Always set CURLOPT_CUSTOMREQUEST to the correct HTTP method in CurlHttpClient (KurtThiemann)
20+
* bug #59059 [TwigBridge] generate conflict-free variable names (xabbuh)
21+
1022
* 7.2.0 (2024-11-29)
1123

1224
* bug #59023 [HttpClient] Fix streaming and redirecting with NoPrivateNetworkHttpClient (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.2.1-DEV';
76+
public const VERSION = '7.2.1';
7777
public const VERSION_ID = 70201;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 1;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '07/2025';
8484
public const END_OF_LIFE = '07/2025';

0 commit comments

Comments
 (0)