10000 Merge pull request #58853 from fabpot/release-7.2.0-RC1 · symfony/symfony@9269c33 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9269c33

Browse files
authored
Merge pull request #58853 from fabpot/release-7.2.0-RC1
released v7.2.0-RC1
2 parents aeb0926 + 8ead929 commit 9269c33

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG-7.2.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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-RC1 (2024-11-13)
11+
12+
* feature #58852 [TypeInfo] Remove ``@experimental`` tag (mtarld)
13+
* feature #57630 [TypeInfo] Redesign Type methods and nullability (mtarld)
14+
* security #cve-2024-50342 [HttpClient] Resolve hostnames in NoPrivateNetworkHttpClient (nicolas-grekas)
15+
* security #cve-2024-51996 [Security] Check owner of persisted remember-me cookie (jderusse)
16+
* bug #58799 [String] Fix some spellings in `EnglishInflector` (alexandre-daubois)
17+
* bug #58823 [TwigBridge] Fix emojify as function in Undefined Handler (smnandre)
18+
* bug #56868 [Serializer] fixed object normalizer for a class with `cancel` method (er1z)
19+
* feature #58483 [Messenger] Extend SQS visibility timeout for messages that are still being processed (valtzu)
20+
* bug #58601 [RateLimiter] Fix bucket size reduced when previously created with bigger size (Orkin)
21+
* bug #58659 [AssetMapper] Fix `JavaScriptImportPathCompiler` regex for non-latin characters (GregRbs92)
22+
* bug #58658 [Twitter][Notifier] Fix post INIT upload (matyo91)
23+
* bug #58705 [Serializer] Revert Default groups (mtarld)
24+
* bug #58763 [Messenger][RateLimiter] fix additional message handled when using a rate limiter (Jean-Beru)
25+
* bug #58791 [RateLimiter] handle error results of DateTime::modify() (xabbuh)
26+
* bug #58804 [Serializer][TypeInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh)
27+
* bug #58800 [PropertyInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh)
28+
1029
* 7.2.0-BETA2 (2024-11-06)
1130

1231
* bug #58776 [DependencyInjection][HttpClient][Routing] Reject URIs that contain invalid characters (nicolas-grekas)

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-RC1';
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 = 'RC1';
8282

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

0 commit comments

Comments
 (0)
0