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

Skip to content

Commit c65b15d

Browse files
authored
Merge pull request #34355 from fabpot/release-5.0.0-BETA2
released v5.0.0-BETA2
2 parents f2daa53 + 20933da commit c65b15d

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-5.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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-BETA2 (2019-11-13)
11+
12+
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)
13+
* bug #34348 [Serializer] Fix ProblemNormalizer signature mismatch (chalasr)
14+
* security #cve-2019-18886 [Security\Core] throw AccessDeniedException when switch user fails (nicolas-grekas)
15+
* security #cve-2019-18888 [Mime] fix guessing mime-types of files with leading dash (nicolas-grekas)
16+
* security #cve-2019-11325 [VarExporter] fix exporting some strings (nicolas-grekas)
17+
* security #cve-2019-18889 [Cache] forbid serializing AbstractAdapter and TagAwareAdapter instances (nicolas-grekas)
18+
* security #cve-2019-18888 [HttpFoundation] fix guessing mime-types of files with leading dash (nicolas-grekas)
19+
* security #cve-2019-18887 [HttpKernel] Use constant time comparison in UriSigner (stof)
20+
1021
* 5.0.0-BETA1 (2019-11-12)
1122

1223
* feature #34333 Revert "feature #34329 [ExpressionLanguage] add XOR operator (ottaviano)" (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6666
private $requestStackSize = 0;
6767
private $resetServices = false;
6868

69-
const VERSION = '5.0.0-DEV';
69+
const VERSION = '5.0.0-BETA2';
7070
const VERSION_ID = 50000;
7171
const MAJOR_VERSION = 5;
7272
const MINOR_VERSION = 0;
7373
const RELEASE_VERSION = 0;
74-
const EXTRA_VERSION = 'DEV';
74+
const EXTRA_VERSION = 'BETA2';
7575

7676
const END_OF_MAINTENANCE = '07/2020';
7777
const END_OF_LIFE = '07/2020';

0 commit comments

Comments
 (0)