8000 Merge pull request #29486 from fabpot/release-2.7.50 · shdev/symfony@0848ce2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0848ce2

Browse files
authored
Merge pull request symfony#29486 from fabpot/release-2.7.50
released v2.7.50
2 parents 9b10db2 + 95222d6 commit 0848ce2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG-2.7.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.50 (2018-12-06)
11+
12+
* security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh)
13+
* security #cve-2018-19789 [Form] Filter file uploads out of regular form types (nicolas-grekas)
14+
1015
* 2.7.49 (2018-08-01)
1116

1217
* security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas)

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.49';
62-
const VERSION_ID = 20749;
61+
const VERSION = '2.7.50';
62+
const VERSION_ID = 20750;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
65-
const RELEASE_VERSION = 49;
65+
const RELEASE_VERSION = 50;
6666
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '05/2018';

0 commit comments

Comments
 (0)
0