Skip to content

Commit 8a613a8

Browse files
authored
Merge pull request symfony#34425 from fabpot/release-5.0.0-RC1
released v5.0.0-RC1
2 parents c9cfc61 + e4cc7cd commit 8a613a8

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG-5.0.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ in 5.0 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.0.0...v5.0.1
99

10+
* 5.0.0-RC1 (2019-11-17)
11+
12+
* bug #34419 [Cache] Disable igbinary on PHP >= 7.4 (nicolas-grekas)
13+
* bug #34347 [Messenger] Perform no deep merging of bus middleware (vudaltsov)
14+
* bug #34366 [HttpFoundation] Allow redirecting to URLs that contain a semicolon (JayBizzle)
15+
* feature #34405 [HttpFoundation] Added possibility to configure expiration time in redis session handler (mantulo)
16+
* bug #34397 [FrameworkBundle] Remove project dir from Translator cache vary scanned directories (fancyweb)
17+
* bug #34384 [DoctrineBridge] Improve queries parameters display in Profiler (fancyweb)
18+
* bug #34408 [Cache] catch exceptions when using PDO directly (xabbuh)
19+
* bug #34411 [HttpKernel] Flatten "exception" controller argument if not typed (chalasr)
20+
* bug #34410 [HttpFoundation] Fix MySQL column type definition. (jbroutier)
21+
* bug #34403 [Cache] Redis Tag Aware warn on wrong eviction policy (andrerom)
22+
* bug #34400 [HttpKernel] collect bundle classes, not paths (nicolas-grekas)
23+
* bug #34398 [Config] fix id-generation for GlobResource (nicolas-grekas)
24+
* bug #34404 [HttpClient] fix HttpClientDataCollector (nicolas-grekas)
25+
* bug #34396 [Finder] Allow ssh2 stream wrapper for sftp (damienalexandre)
26+
* bug #34383 [DI] Use reproducible entropy to generate env placeholders (nicolas-grekas)
27+
* bug #34389 [WebProfilerBundle] add FrameworkBundle requirement (xabbuh)
28+
* bug #34381 [WebProfilerBundle] Require symfony/twig-bundle (fancyweb)
29+
* bug #34358 [Security] always check the token on non-lazy firewalls (nicolas-grekas, lyrixx)
30+
* bug #34390 [FrameworkBundle] fix wiring of httplug client (nicolas-grekas)
31+
* bug #34369 [FrameworkBundle] Disallow WebProfilerBundle < 4.4 (derrabus)
32+
* bug #34370 [DI] fix detecting singly implemented interfaces (nicolas-grekas)
33+
1034
* 5.0.0-BETA2 (2019-11-13)
1135

1236
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

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

6969
private static $freshCache = [];
7070

71-
const VERSION = '5.0.0-DEV';
71+
const VERSION = '5.0.0-RC1';
7272
const VERSION_ID = 50000;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 0;
76-
const EXTRA_VERSION = 'DEV';
76+
const EXTRA_VERSION = 'RC1';
7777

7878
const END_OF_MAINTENANCE = '07/2020';
7979
const END_OF_LIFE = '07/2020';

0 commit comments

Comments
 (0)