8000 Merge pull request #29487 from fabpot/release-2.8.49 · shdev/symfony@f8ac64c · GitHub
[go: up one dir, main page]

Skip to content

Commit f8ac64c

Browse files
authored
Merge pull request symfony#29487 from fabpot/release-2.8.49
released v2.8.49
2 parents c8389f7 + adeee13 commit f8ac64c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG-2.8.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.49 (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.8.48 (2018-11-26)
1116

1217
* bug #28917 [DoctrineBridge] catch errors while converting to db values in data collector (alekitto)

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.48';
63-
const VERSION_ID = 20848;
62+
const VERSION = '2.8.49';
63+
const VERSION_ID = 20849;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
66-
const RELEASE_VERSION = 48;
66+
const RELEASE_VERSION = 49;
6767
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';

0 commit comments

Comments
 (0)
0