8000 Merge pull request #36968 from fabpot/release-5.1.0-RC2 · cvmiert/symfony@40784fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 40784fb

Browse files
authored
Merge pull request symfony#36968 from fabpot/release-5.1.0-RC2
released v5.1.0-RC2
2 parents 7f6934c + 5715e6e commit 40784fb

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ in 5.1 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.1.0...v5.1.1
99

10+
* 5.1.0-RC2 (2020-05-26)
11+
12+
* bug #36966 Fix extra SQL support in Doctrine migrations (fabpot)
13+
* bug #36960 [HttpClient] fix management of shorter-than-requested timeouts with AmpHttpClient (nicolas-grekas)
14+
* bug #36947 [Mime] Allow email message to have "To", "Cc", or "Bcc" header to be valid (Ernest Hymel)
15+
* bug #36943 [FrameworkBundle] Fix MicroKernelTrait for php 8 (derrabus)
16+
* bug #36938 Don't call method_exists() with non-objects. (derrabus)
17+
* bug #36936 [FrameworkBundle] don't use abstract methods in MicroKernelTrait, their semantics changed in PHP 8 (nicolas-grekas)
18+
* bug #36935 [HttpClient] Adjust AmpResponse to the stricter trait handling in php 8 (derrabus)
19+
* bug #36914 Parse and render anonymous classes correctly on php 8 (derrabus)
20+
* bug #36921 [OptionsResolver][Serializer] Remove calls to deprecated ReflectionParameter::getClass() (derrabus)
21+
* feature #36918 [Security] Removed "services" prototype node from "custom_authenticator" (wouterj)
22+
* bug #36920 [VarDumper] fix PHP 8 support (nicolas-grekas)
23+
* bug #36917 [Cache] Accessing undefined constants raises an Error in php8 (derrabus)
24+
* bug #36891 Address deprecation of ReflectionType::getClass() (derrabus)
25+
* bug #36899 [VarDumper] ReflectionFunction::isDisabled() is deprecated (derrabus)
26+
* bug #36905 [Validator] Catch expected ValueError (derrabus)
27+
* bug #36915 [DomCrawler] Catch expected ValueError (derrabus)
28+
* bug #36908 [Cache][HttpClient] Made method signatures compatible with their corresponding traits (derrabus)
29+
* bug #36906 [DomCrawler] Catch expected ValueError (derrabus)
30+
* bug #36904 [PropertyAccess] Parse php 8 TypeErrors correctly (derrabus)
31+
* bug #36839 [BrowserKit] Raw body with custom Content-Type header (azhurb)
32+
* bug #36869 [Form] don't add the inputmode attribute on fields whose type is the same (MatTheCat)
33+
* feature #36886 [Validator] Make ExpressionLanguageSyntax validator usable with annotation (jderusse)
34+
* bug #36896 [Config] Removed implicit cast of ReflectionProperty to string (derrabus)
35+
* bug #35944 [Security/Core] Fix wrong roles comparison (thlbaut)
36+
* bug #36873 [Messenger] Fixed check for allowed options in AwsSqs configuration (kroshilin)
37+
* bug #36882 [PhpUnitBridge] fix installing under PHP >= 8 (nicolas-grekas)
38+
* bug #36859 [Validator] allow passing a validator to Validation::createCallable() (nicolas-grekas)
39+
* bug #36833 [HttpKernel] Fix that the `Store` would not save responses with the X-Content-Digest header present (mpdude)
40+
* bug #36867 [PhpUnitBridge] fix bad detection of unsilenced deprecations (nicolas-grekas)
41+
* bug #36862 [Security] Unserialize $parentData, if needed, to avoid errors (rfaivre)
42+
* bug #36855 [HttpKernel] Fix error logger when stderr is redirected to /dev/null (fabpot)
43+
* bug #36838 [HttpKernel] Bring back the debug toolbar (derrabus)
44+
1045
* 5.1.0-RC1 (2020-05-16)
1146

1247
* bug #36832 [Security] Improved upgrade path for custom remember me services (wouterj)

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 $freshCache = [];
7575

76-
const VERSION = '5.1.0-DEV';
76+
const VERSION = '5.1.0-RC2';
7777
const VERSION_ID = 50100;
7878
const MAJOR_VERSION = 5;
7979
const MINOR_VERSION = 1;
8080
const RELEASE_VERSION = 0;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = 'RC2';
8282

8383
const END_OF_MAINTENANCE = '01/2021';
8484
const END_OF_LIFE = '01/2021';

0 commit comments

Comments
 (0)
0