8000 Merge pull request #39133 from fabpot/release-5.2.0-RC2 · symfony/symfony@cbce537 · GitHub
[go: up one dir, main page]

Skip to content

Commit cbce537

Browse files
authored
Merge pull request #39133 from fabpot/release-5.2.0-RC2
released v5.2.0-RC2
2 parents 09a79d3 + 192b826 commit cbce537

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ in 5.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/v5.2.0...v5.2.1
99

10+
* 5.2.0-RC2 (2020-11-21)
11+
12+
* bug #39113 [DoctrineBridge] drop binary variants of UID types (nicolas-grekas)
13+
* feature #39111 [Security] Update password upgrader listener to work with the new UserBadge (wouterj)
14+
* bug #39083 [Dotenv] Check if method inheritEnvironmentVariables exists (Chi-teck)
15+
* bug #39094 [Ldap] Fix undefined variable $con (derrabus)
16+
* bug #39091 [Config] Recheck glob brace support after GlobResource was serialized (wouterj)
17+
* bug #39092 Fix critical extension when reseting paged control (jderusse)
18+
* bug #38614 [HttpFoundation] Fix for virtualhosts based on URL path (mvorisek)
19+
* bug #39072 [FrameworkBundle] [Notifier] fix firebase transport factory DI tag type (xabbuh)
20+
* bug #39070 [Validator] Remove IsinValidator's validator dependency (derrabus)
21+
* bug #38387 [Validator] prevent hash collisions caused by reused object hashes (fancyweb, xabbuh)
22+
* bug #38999 [DependencyInjection] autoconfigure behavior describing tags on decorators (xabbuh)
23+
* bug #39058 [DependencyInjection] Fix circular detection with multiple paths (jderusse)
24+
* bug #39059 [Filesystem] fix cleaning up tmp files when dumpFile() fails (nicolas-grekas)
25+
1026
* 5.2.0-RC1 (2020-11-10)
1127

1228
* bug #39004 [Messenger] Fix JSON deserialization of ErrorDetailsStamp and normalization of FlattenException::$statusText (Jean85)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7474

7575
private static $freshCache = [];
7676

77-
const VERSION = '5.2.0-DEV';
77+
const VERSION = '5.2.0-RC2';
7878
const VERSION_ID = 50200;
7979
const MAJOR_VERSION = 5;
8080
const MINOR_VERSION = 2;
8181
const RELEASE_VERSION = 0;
82-
const EXTRA_VERSION = 'DEV';
82+
const EXTRA_VERSION = 'RC2';
8383

8484
const END_OF_MAINTENANCE = '07/2021';
8585
const END_OF_LIFE = '07/2021';

0 commit comments

Comments
 (0)
0