Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8de113e

Browse files
authored
Merge pull request #39043 from fabpot/release-5.2.0-RC1
released v5.2.0-RC1
2 parents c721e02 + f33a0d3 commit 8de113e

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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-RC1 (2020-11-10)
11+
12+
* bug #39004 [Messenger] Fix JSON deserialization of ErrorDetailsStamp and normalization of FlattenException::$statusText (Jean85)
13+
* bug #38628 [DoctrineBridge] indexBy could reference to association columns (juanmiguelbesada)
14+
* bug #39021 [DependencyInjection] Optimize circular collection by removing flattening (jderusse)
15+
* bug #39031 [Ldap] Fix pagination (jderusse)
16+
* bug #39038 [DoctrineBridge] also reset id readers (xabbuh)
17+
* feature #39032 [Validator] Allow load mappings from attributes without doctrine/annotations (derrabus)
18+
* feature #39022 [FrameworkBundle] Allow to use attribute-based configuration of routing/serializer without doctrine/annotations (derrabus)
19+
* bug #39002 [Validator] Override the default option of the choice constraint (benji07)
20+
* bug #39026 [Messenger] Fix DBAL deprecations in PostgreSqlConnection (chalasr)
21+
* bug #39025 [DoctrineBridge] Fix DBAL deprecations in middlewares (derrabus)
22+
* bug #38991 [Console] Fix ANSI when stdErr is not a tty (jderusse)
23+
* bug #38980 [DependencyInjection] Fix circular reference with Factory + Lazy Iterrator (jderusse)
24+
* bug #38986 [DoctrineBridge] accept converting Uid-as-strings to db-values (nicolas-grekas)
25+
* feature #38850 [Messenger] Do not call getQueueUrl when the url is known in AmazonSqs transport (jderusse)
26+
* feature #38940 [Messenger] Improve formatting of exception in failed message (Jeroen Noten)
27+
* feature #38954 [HttpFundation][FrameworkBundle] Deprecate the HEADER_X_FORWARDED_ALL constant (jderusse)
28+
* bug #38977 [HttpClient] Check status code before decoding content in TraceableResponse (chalasr)
29+
* bug #38971 [PhpUnitBridge] fix replaying skipped tests (nicolas-grekas)
30+
* bug #38910 [HttpKernel] Fix session initialized several times (jderusse)
31+
* bug #38882 [DependencyInjection] Improve performances in CircualReference detection (jderusse)
32+
* bug #38950 [Process] Dont test TTY if there is no TTY support (Nyholm)
33+
* bug #38921 [PHPUnitBridge] Fixed crash on Windows with PHP 8 (villfa)
34+
* feature #38919 [Console] Make error message more verbose (Nyholm)
35+
* bug #38869 [SecurityBundle] inject only compatible token storage implementations for usage tracking (xabbuh)
36+
* feature #38859 [HttpFoundation] Deprecate not passing a `Closure` together with `FILTER_CALLBACK` to `ParameterBag::filter()` (nicolas-grekas)
37+
* bug #38894 [HttpKernel] Remove Symfony 3 compatibility code (derrabus)
38+
* bug #38888 remove reflection-docblock from mime requirements (garak)
39+
* bug #38895 [PhpUnitBridge] Fix wrong check for exporter in ConstraintTrait (alcaeus)
40+
* bug #38879 [Cache] Fixed expiry could be int in ChainAdapter due to race conditions (phamviet)
41+
* bug #38867 [FrameworkBundle] Fixing TranslationUpdateCommand failure when using "--no-backup" (liarco)
42+
* bug #38856 [Cache] Add missing use statement (fabpot)
43+
1044
* 5.2.0-BETA3 (2020-10-28)
1145

1246
* bug #38845 [Console] Register signal handling only for commands implemeting SignalableCommandInterface (lyrixx)

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

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

0 commit comments

Comments
 (0)