8000 Merge pull request #29491 from fabpot/release-4.0.15 · alex-dev/symfony@a1cce5a · GitHub
[go: up one dir, main page]

Skip to content

Commit a1cce5a

Browse files
authored
Merge pull request symfony#29491 from fabpot/release-4.0.15
released v4.0.15
2 parents a83d841 + 5c0b274 commit a1cce5a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-4.0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 4.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/v4.0.0...v4.0.1
99

10+
* 4.0.15 (2018-12-06)
11+
12+
* security `#cve-2018-19790 <https://symfony.com/cve-2018-19790>`_ [Security\Http] detect bad redirect targets using backslashes (@xabbuh)
13+
* security `#cve-2018-19789 <https://symfony.com/cve-2018-19789>`_ [Form] Filter file uploads out of regular form types (@nicolas-grekas)
14+
1015
* 4.0.14 (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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.0.15-DEV';
66+
const VERSION = '4.0.15';
6767
const VERSION_ID = 40015;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 15;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '07/2018';
7474
const END_OF_LIFE = '01/2019';

0 commit comments

Comments
 (0)
0