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 ee1bfdf

Browse filesBrowse files
authored
Merge pull request #59865 from fabpot/release-7.2.4
released v7.2.4
2 parents 770120c + c701eb7 commit ee1bfdf
Copy full SHA for ee1bfdf

File tree

2 files changed

+39
-2
lines changed
Filter options

2 files changed

+39
-2
lines changed

‎CHANGELOG-7.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-7.2.md
+37
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ 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.4 (2025-02-26)
11+
12+
* bug #59198 [Messenger] Filter out non-consumable receivers when registering `ConsumeMessagesCommand` (wazum)
13+
* bug #59781 [Mailer] fix multiple transports default injection (fkropfhamer)
14+
* bug #59836 [Mailer][Postmark] Set CID for attachments when it exists (IssamRaouf)
15+
* bug #59829 [FrameworkBundle] Disable the keys normalization of the CSRF form field attributes (sukei)
16+
* bug #59840 Fix PHP warning in GetSetMethodNormalizer when a "set()" method is defined (Pepperoni1337)
17+
* bug #59818 [TypeInfo] Fix create union with nullable type (mtarld)
18+
* bug #59810 [DependencyInjection] Defer check for circular references instead of skipping them (biozshock)
19+
* bug #59811 [Validator] Synchronize IBAN formats (alexandre-daubois)
20+
* bug #59796 [Mime] use address for body at `PathHeader` (tinect)
21+
* bug #59803 [Semaphore] allow redis cluster/sentinel dsn (smoench)
22+
* bug #59779 [DomCrawler] Bug #43921 Check for null parent nodes in the case of orphaned branches (ttk)
23+
* bug #59776 [WebProfilerBundle] fix rendering notifier message options (xabbuh)
24+
* bug #59769 Enable `JSON_PRESERVE_ZERO_FRACTION` in `jsonRequest` method (raffaelecarelle)
25+
* bug #59774 [TwigBridge] Fix compatibility with Twig 3.21 (alexandre-daubois)
26+
* bug #59761 [VarExporter] Fix lazy objects with hooked properties (nicolas-grekas)
27+
* bug #59763 [HttpClient] Don't send any default content-type when the body is empty (nicolas-grekas)
28+
* bug #59747 [Translation] check empty notes (davidvancl)
29+
* bug #59751 [Cache] Tests for Redis Replication with cache (DemigodCode)
30+
* bug #59752 [BrowserKit] Fix submitting forms with empty file fields (nicolas-grekas)
31+
* bug #59742 [Notifier] [BlueSky] Change the value returned as the message ID (javiereguiluz)
32+
* bug #59033 [WebProfilerBundle] Fix interception for non conventional redirects (Huluti)
33+
* bug #59713 [DependencyInjection] Do not preload functions (biozshock)
34+
* bug #59723 [DependencyInjection] Fix cloned lazy services not sharing their dependencies when dumped with PhpDumper (pvandommelen)
35+
* bug #59727 [HttpClient] Fix activity tracking leading to negative timeout errors (nicolas-grekas)
36+
* bug #59728 [Form][FrameworkBundle] Use auto-configuration to make the default CSRF token id apply only to the app; not to bundles (nicolas-grekas)
37+
* bug #59262 [DependencyInjection] Fix env default processor with scalar node (tBibaut)
38+
* bug #59699 [Serializer] Handle default context in named Serializer (HypeMC)
39+
* bug #59640 [Security] Return null instead of empty username to fix deprecation notice (phasdev)
40+
* bug #59661 [Lock] Fix Predis error handling (HypeMC)
41+
* bug #59596 [Mime] use `isRendered` method to ensure we can avoid rendering an email twice (walva)
42+
* bug #59689 [HttpClient] Fix buffering AsyncResponse with no passthru (nicolas-grekas)
43+
* bug #59654 [HttpClient] Fix uploading files > 2GB (nicolas-grekas)
44+
* bug #59648 [HttpClient] Fix retrying requests with `Psr18Client` and NTLM connections (nicolas-grekas, ajgarlag)
45+
* bug #59681 [TypeInfo] Fix promoted property phpdoc reading (mtarld)
46+
1047
* 7.2.3 (2025-01-29)
1148

1249
* bug #58889 [Serializer] Handle default context in Serializer (Valmonzo)

‎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.4-DEV';
76+
public const VERSION = '7.2.4';
7777
public const VERSION_ID = 70204;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 4;
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.