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

Skip to content

Commit 2c30da6

Browse files
authored
Merge pull request #36835 from fabpot/release-5.1.0-RC1
released v5.1.0-RC1
2 parents c268915 + 73acbab commit 2c30da6

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ 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-RC1 (2020-05-16)
11+
12+
* bug #36832 [Security] Improved upgrade path for custom remember me services (wouterj)
13+
* bug #36592 [BrowserKit] Allow Referer set by history to be overridden (Slamdunk)
14+
* bug #36800 [DI] Renamed some PHP-DSL functions (javiereguiluz)
15+
* bug #36806 RememberMeLogoutListener should depend on LogoutHandlerInterface (scheb)
16+
* bug #36805 [Security\Core] Fix NoopAuthenticationManager::authenticate() return value (chalasr)
17+
* bug #36823 [HttpClient] fix PHP warning + accept status code >= 600 (nicolas-grekas)
18+
* bug #36824 [Security/Core] fix compat of `NativePasswordEncoder` with pre-PHP74 values of `PASSWORD_*` consts (nicolas-grekas)
19+
* bug #36811 [DependencyInjection] Fix register event listeners compiler pass (X-Coder264)
20+
* bug #36789 Change priority of KernelEvents::RESPONSE subscriber (marcw)
21+
* bug #36794 [Serializer] fix issue with PHP 8 (nicolas-grekas)
22+
* bug #36786 [WebProfiler] Remove 'none' when appending CSP tokens (ndench)
23+
* bug #36796 [DI] Use require_once instead of require when appending cache warmer-returned files to preload file (ovrflo)
24+
* bug #36743 [Yaml] Fix escaped quotes in quoted multi-line string (ossinkine)
25+
* bug #36773 [HttpClient] preserve the identity of responses streamed by TraceableHttpClient (nicolas-grekas)
26+
* bug #36777 [TwigBundle] FormExtension does not have a constructor anymore since sf 4.0 (Tobion)
27+
* bug #36766 [HttpClient] add TimeoutExceptionInterface (nicolas-grekas)
28+
* bug #36716 [Mime] handle passing custom mime types as string (mcneely)
29+
* bug #36765 [HttpClient] fix dealing with informational response (nicolas-grekas)
30+
* bug #36747 Queue name is a required parameter (theravel)
31+
* bug #36751 [Mime] fix bad method call on `EmailAddressContains` (Kocal)
32+
* bug #36737 [Cache] fix accepting sub-second max-lifetimes in ArrayAdapter (nicolas-grekas)
33+
* bug #36749 [DI] give priority to container.hot_path over container.no_preload (nicolas-grekas)
34+
* bug #36721 [FrameworkBundle] remove getProjectDir method from MicroKernelTrait (garak)
35+
1036
* 5.1.0-BETA1 (2020-05-05)
1137

1238
* feature #36711 [Form] deprecate `NumberToLocalizedStringTransformer::ROUND_*` constants (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 $freshCache = [];
7575

76-
const VERSION = '5.1.0-DEV';
76+
const VERSION = '5.1.0-RC1';
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 = 'RC1';
8282

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

0 commit comments

Comments
 (0)