Skip to content

Release v5.2.0-RC2 #39133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG-5.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ in 5.2 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.2.0...v5.2.1

* 5.2.0-RC2 (2020-11-21)

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

* 5.2.0-RC1 (2020-11-10)

* bug #39004 [Messenger] Fix JSON deserialization of ErrorDetailsStamp and normalization of FlattenException::$statusText (Jean85)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

const VERSION = '5.2.0-DEV';
const VERSION = '5.2.0-RC2';
const VERSION_ID = 50200;
const MAJOR_VERSION = 5;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'RC2';

const END_OF_MAINTENANCE = '07/2021';
const END_OF_LIFE = '07/2021';
Expand Down