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

Skip to content

Commit f6385e9

Browse files
authored
Merge pull request #60075 from fabpot/release-7.2.5
released v7.2.5
2 parents a28d91c + 4643d2d commit f6385e9

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGELOG-7.2.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ 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.5 (2025-03-28)
11+
12+
* bug #60054 [Form] Use duplicate_preferred_choices to set value of ChoiceType (aleho)
13+
* bug #60026 [Serializer] Fix ObjectNormalizer default context with named serializers (HypeMC)
14+
* bug #60030 [Cache][DoctrineBridge][HttpFoundation][Lock][Messenger] use `Table::addPrimaryKeyConstraint()` with Doctrine DBAL 4.3+ (xabbuh)
15+
* bug #59844 [TypeInfo] Fix `isSatisfiedBy` not traversing type tree (mtarld)
16+
* bug #59858 Update `JsDelivrEsmResolver::IMPORT_REGEX` to support dynamic imports (natepage)
17+
* bug #60019 [HttpKernel] Fix `TraceableEventDispatcher` when the `Stopwatch` service has been reset (lyrixx)
18+
* bug #59975 [HttpKernel] Only remove `E_WARNING` from error level during kernel init (fritzmg)
19+
* bug #59988 [FrameworkBundle] Remove redundant `name` attribute from `default_context` (HypeMC)
20+
* bug #59963 [TypeInfo] Fix ``@var`` tag reading for promoted properties (mtarld)
21+
* bug #59949 [Process] Use a pipe for stderr in pty mode to avoid mixed output between stdout and stderr (joelwurtz)
22+
* bug #59940 [Cache] Fix missing cache data in profiler (dcmbrs)
23+
* bug #59965 [VarExporter] Fix support for hooks and asymmetric visibility (nicolas-grekas)
24+
* bug #59924 Extract no type ``@param`` annotation with `PhpStanExtractor` (thomasdubuffet)
25+
* bug #59908 [Messenger] Reduce keepalive request noise (ro0NL)
26+
* bug #59874 [Console] fix progress bar messing output in section when there is an EOL (joelwurtz)
27+
* bug #59888 [PhpUnitBridge] don't trigger "internal" deprecations for PHPUnit Stub objects (xabbuh)
28+
* bug #59830 [Yaml] drop comments while lexing unquoted strings (xabbuh)
29+
* bug #59884 [VarExporter] Fix support for asymmetric visibility (nicolas-grekas)
30+
* bug #59881 [VarExporter] Fix support for abstract properties (nicolas-grekas)
31+
* bug #59841 [Cache] fix cache data collector on late collect (dcmbrs)
32+
1033
* 7.2.4 (2025-02-26)
1134

1235
* bug #59198 [Messenger] Filter out non-consumable receivers when registering `ConsumeMessagesCommand` (wazum)

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.5-DEV';
76+
public const VERSION = '7.2.5';
7777
public const VERSION_ID = 70205;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 5;
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