Skip to content

Commit bcae556

Browse files
authored
Merge pull request symfony#58780 from fabpot/release-7.2.0-BETA2
released v7.2.0-BETA2
2 parents cf9ccc5 + e266552 commit bcae556

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

CHANGELOG-7.2.md

Lines changed: 26 additions & 0 deletions
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.0-BETA2 (2024-11-06)
11+
12+
* bug #58776 [DependencyInjection][HttpClient][Routing] Reject URIs that contain invalid characters (nicolas-grekas)
13+
* bug #58772 [DoctrineBridge] Backport detection fix of Xml/Yaml driver in DoctrineExtension (MatTheCat)
14+
* bug #58706 [TwigBridge] use reproducible variable names in the default domain node visitor (xabbuh)
15+
* security #cve-2024-51736 [Process] Use PATH before CD to load the shell on Windows (nicolas-grekas)
16+
* security #cve-2024-50342 [HttpClient] Filter private IPs before connecting when Host == IP (nicolas-grekas)
17+
* security #cve-2024-50345 [HttpFoundation] Reject URIs that contain invalid characters (nicolas-grekas)
18+
* security #cve-2024-50340 [Runtime] Do not read from argv on non-CLI SAPIs (wouterj)
19+
* bug #58765 [VarDumper] fix detecting anonymous exception classes on Windows and PHP 7 (xabbuh)
20+
* bug #58757 [RateLimiter] Fix DateInterval normalization (danydev)
21+
* bug #58764 [Mime] Don't require passing the encoder name to `TextPart` (javiereguiluz)
22+
* bug #58712 [HttpFoundation] Fix support for `\SplTempFileObject` in `BinaryFileResponse` (elementaire)
23+
* bug #58762 [WebProfilerBundle] re-add missing profiler shortcuts on profiler homepage (xabbuh)
24+
* bug #58754 [Security] Store original token in token storage when implicitly exiting impersonation (wouterj)
25+
* bug #58753 [Cache] Fix clear() when using Predis (nicolas-grekas)
26+
* bug #58713 [Config] Handle Phar absolute path in `FileLocator` (alexandre-daubois)
27+
* bug #58728 [WebProfilerBundle] Re-add missing Profiler shortcuts on Profiler homepage (welcoMattic)
28+
* bug #58739 [WebProfilerBoundle] form data collector check passed and resolved options are defined (vltrof)
29+
* bug #58752 [Process] Fix escaping /X arguments on Windows (nicolas-grekas)
30+
* bug #58735 [Process] Return built-in cmd.exe commands directly in ExecutableFinder (Seldaek)
31+
* bug #58723 [Process] Properly deal with not-found executables on Windows (nicolas-grekas)
32+
* bug #58711 [Process] Fix handling empty path found in the PATH env var with ExecutableFinder (nicolas-grekas)
33+
* bug #58704 [HttpClient] fix for HttpClientDataCollector fails if proc_open is disabled via php.ini (ZaneCEO)
34+
* bug #58703 [TwigBridge] Use INTERNAL_VAR_NAME instead of getVarName (pan93412)
35+
1036
* 7.2.0-BETA1 (2024-10-27)
1137

1238
* feature #58467 [PhpUnitBridge] support `ClockMock` and `DnsMock` with PHPUnit 10+ (xabbuh)

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.0-DEV';
76+
public const VERSION = '7.2.0-BETA2';
7777
public const VERSION_ID = 70200;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 2;
8080
public const RELEASE_VERSION = 0;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = 'BETA2';
8282

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

0 commit comments

Comments
 (0)