Skip to content

Commit 2ef4e09

Browse files
authored
Merge pull request symfony#31145 from fabpot/release-2.8.50
released v2.8.50
2 parents 3876c75 + 9fc1016 commit 2ef4e09

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG-2.8.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.50 (2019-04-17)
11+
12+
* security #cve-2019-10910 [DI] Check service IDs are valid (nicolas-grekas)
13+
* security #cve-2019-10909 [FrameworkBundle][Form] Fix XSS issues in the form theme of the PHP templating engine (stof)
14+
* security #cve-2019-10912 [PHPUnit Bridge] Prevent destructors with side-effects from being unserialized (nicolas-grekas)
15+
* security #cve-2019-10911 [Security] Add a separator in the remember me cookie hash (pborreli)
16+
* security #cve-2019-10913 [HttpFoundation] reject invalid method override (nicolas-grekas)
17+
1018
* 2.8.49 (2018-12-06)
1119

1220
* security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.49';
63-
const VERSION_ID = 20849;
62+
const VERSION = '2.8.50';
63+
const VERSION_ID = 2.8.50;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
66-
const RELEASE_VERSION = 49;
66+
const RELEASE_VERSION = 50;
6767
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';

0 commit comments

Comments
 (0)