Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c354f71

Browse filesBrowse files
authored
Merge pull request #60326 from fabpot/release-7.2.6
released v7.2.6
2 parents 6bd461b + e227175 commit c354f71
Copy full SHA for c354f71

File tree

2 files changed

+28
-2
lines changed
Filter options

2 files changed

+28
-2
lines changed

‎CHANGELOG-7.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-7.2.md
+26
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ 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.6 (2025-05-02)
11+
12+
* bug #60288 [VarExporter] dump default value for property hooks if present (xabbuh)
13+
* bug #60267 [Contracts] Fix `ServiceMethodsSubscriberTrait` for nullable service (StevenRenaux)
14+
* bug #60268 [Contracts] Fix `ServiceSubscriberTrait` for nullable service (StevenRenaux)
15+
* bug #60256 [Mailer][Postmark] drop the `Date` header using the API transport (xabbuh)
16+
* bug #60258 [VarExporter] Fix: Use correct closure call for property-specific logic in $notByRef (Hakayashii, denjas)
17+
* bug #60269 [Notifier] [Discord] Fix value limits (norkunas)
18+
* bug #60270 [Validator] [WordCount] Treat 0 as one character word and do not exclude it (sidz)
19+
* bug #60248 [Messenger] Revert " Add call to `gc_collect_cycles()` after each message is handled" (jwage)
20+
* bug #60236 [String] Support nexus -> nexuses pluralization (KorvinSzanto)
21+
* bug #60238 [Lock] read (possible) error from Redis instance where evalSha() was called (xabbuh)
22+
* bug #60194 [Workflow] Fix dispatch of entered event when the subject is already in this marking (lyrixx)
23+
* bug #60174 [PhpUnitBridge] properly clean up mocked features after tests have run (xabbuh)
24+
* bug #60172 [Cache] Fix invalidating on save failures with Array|ApcuAdapter (nicolas-grekas)
25+
* bug #60122 [Cache] ArrayAdapter serialization exception clean $expiries (bastien-wink)
26+
* bug #60167 [Cache] Fix proxying third party PSR-6 cache items (Dmitry Danilson)
27+
* bug #60165 [HttpKernel] Do not ignore enum in controller arguments when it has an `#[Autowire]` attribute (ruudk)
28+
* bug #60168 [Console] Correctly convert `SIGSYS` to its name (cs278)
29+
* bug #60166 [Security] fix(security): fix OIDC user identifier (vincentchalamon)
30+
* bug #60124 [Validator] : fix url validation when punycode is on tld but not on domain (joelwurtz)
31+
* bug #60137 [Config] ResourceCheckerConfigCache metadata unserialize emits warning (Colin Michoudet)
32+
* bug #60057 [Mailer] Fix `Trying to access array offset on value of type null` error by adding null checking (khushaalan)
33+
* bug #60094 [DoctrineBridge] Fix support for entities that leverage native lazy objects (nicolas-grekas)
34+
* bug #60094 [DoctrineBridge] Fix support for entities that leverage native lazy objects (nicolas-grekas)
35+
1036
* 7.2.5 (2025-03-28)
1137

1238
* bug #60054 [Form] Use duplicate_preferred_choices to set value of ChoiceType (aleho)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2
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.6-DEV';
76+
public const VERSION = '7.2.6';
7777
public const VERSION_ID = 70206;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 6;
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.