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 fca27be

Browse filesBrowse files
authored
Merge pull request #59338 from fabpot/release-7.2.2
released v7.2.2
2 parents cc35113 + 9a93094 commit fca27be
Copy full SHA for fca27be

File tree

2 files changed

+26
-2
lines changed
Filter options

2 files changed

+26
-2
lines changed

‎CHANGELOG-7.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-7.2.md
+24Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ 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.2 (2024-12-31)
11+
12+
* bug #59304 [PropertyInfo] Remove ``@internal`` from `PropertyReadInfo` and `PropertyWriteInfo` (Dario Guarracino)
13+
* bug #59252 [Stopwatch] bug #54854 undefined key error when trying to fetch a mis… (Alex Niedre)
14+
* bug #59278 [SecurityBundle] Do not replace authenticators service by their traceable version (MatTheCat)
15+
* bug #59228 [HttpFoundation] Avoid mime type guess with temp files in `BinaryFileResponse` (alexandre-daubois)
16+
* bug #59318 [Finder] Fix using `==` as default operator in `DateComparator` (MatTheCat)
17+
* bug #59321 [HtmlSanitizer] reject URLs containing whitespaces (xabbuh)
18+
* bug #59310 [Validator] the "max" option can be zero (xabbuh)
19+
* bug #59271 [TypeInfo] Fix PHPDoc resolving of union with mixed (mtarld)
20+
* bug #59269 [Security/Csrf] Trust "Referer" at the same level as "Origin" (nicolas-grekas)
21+
* bug #59250 [HttpClient] Fix a typo in NoPrivateNetworkHttpClient (Jontsa)
22+
* bug #59103 [Messenger] ensure exception on rollback does not hide previous exception (nikophil)
23+
* bug #59226 [FrameworkBundle] require the writer to implement getFormats() in the translation:extract (xabbuh)
24+
* bug #59213 [FrameworkBundle] don't require fake notifier transports to be installed as non-dev dependencies (xabbuh)
25+
* bug #59113 [FrameworkBundle][Translation] fix translation lint compatibility with the `PseudoLocalizationTranslator` (xabbuh)
26+
* bug #59060 [Validator] set the violation path only if the `errorPath` option is set (xabbuh)
27+
* bug #59066 Fix resolve enum in string type resolver (DavidBadura)
28+
* bug #59156 [PropertyInfo] Fix interface handling in PhpStanTypeHelper (mtarld)
29+
* bug #59160 [BeanstalkMessenger] Round delay to an integer to avoid deprecation warning (plantas)
30+
* bug #59012 [PropertyInfo] Fix interface handling in `PhpStanTypeHelper` (janedbal)
31+
* bug #59134 [HttpKernel] Denormalize request data using the csv format when using "#[MapQueryString]" or "#[MapRequestPayload]" (except for content data) (ovidiuenache)
32+
* bug #59140 [WebProfilerBundle] fix: white-space in highlighted code (chr-hertel)
33+
1034
* 7.2.1 (2024-12-11)
1135

1236
* bug #59145 [TypeInfo] Make `Type::nullable` method no-op on every nullable type (mtarld)

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.2-DEV';
76+
public const VERSION = '7.2.2';
7777
public const VERSION_ID = 70202;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 2;
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.