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

Skip to content

Commit 20f9c87

Browse files
authored
Merge pull request symfony#31144 from fabpot/release-2.7.51
released v2.7.51
2 parents 789a34a + 2636414 commit 20f9c87

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG-2.7.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ in 2.7 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.7.0...v2.7.1
99

10+
* 2.7.51 (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 - CVE-2019-10909 (stof)
14+
* security #cve-2019-10911 [Security] Add a separator in the remember me cookie hash (pborreli)
15+
* security #cve-2019-10913 [HttpFoundation] reject invalid method override (nicolas-grekas)
16+
1017
* 2.7.50 (2018-12-06)
1118

1219
* 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
@@ -58,11 +58,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $startTime;
5959
protected $loadClassCache;
6060

61-
const VERSION = '2.7.50';
62-
const VERSION_ID = 20750;
61+
const VERSION = '2.7.51';
62+
const VERSION_ID = 2.7.51;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
65-
const RELEASE_VERSION = 50;
65+
const RELEASE_VERSION = 51;
6666
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '05/2018';

0 commit comments

Comments
 (0)