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

Skip to content

Commit e8d2a2e

Browse files
authored
Merge pull request #28099 from fabpot/release-3.3.18
released v3.3.18
2 parents 1db2d2e + 5484ff9 commit e8d2a2e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG-3.3.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 3.3 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/v3.3.0...v3.3.1
99

10+
* 3.3.18 (2018-08-01)
11+
12+
* security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas)
13+
* security #cve-2018-14773 [HttpFoundation] Remove support for legacy and risky HTTP headers (nicolas-grekas)
14+
1015
* 3.3.17 (2018-05-25)
1116

1217
* security #cve-2018-11407 [Ldap] cast to string when checking empty passwords

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6161

6262
private $projectDir;
6363

64-
const VERSION = '3.3.17';
65-
const VERSION_ID = 30317;
64+
const VERSION = '3.3.18';
65+
const VERSION_ID = 30318;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
68-
const RELEASE_VERSION = 17;
68+
const RELEASE_VERSION = 18;
6969
const EXTRA_VERSION = '';
7070

7171
const END_OF_MAINTENANCE = '01/2018';

0 commit comments

Comments
 (0)