Skip to content

Commit 9d1072d

Browse files
committed
Merge pull request #16636 from fabpot/release-2.6.12
Release v2.6.12
2 parents 941b45e + 995fe39 commit 9d1072d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG-2.6.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 2.6 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.6.0...v2.6.1
99

10+
* 2.6.12 (2015-11-23)
11+
12+
* security #16631 CVE-2015-8124: Session Fixation in the "Remember Me" Login Feature (xabbuh)
13+
* security #16630 CVE-2015-8125: Potential Remote Timing Attack Vulnerability in Security Remember-Me Service (xabbuh)
14+
1015
* 2.6.11 (2015-07-26)
1116

1217
* bug #15361 [Yaml] throw a ParseException on invalid data type (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6060
protected $startTime;
6161
protected $loadClassCache;
6262

63-
const VERSION = '2.6.11';
64-
const VERSION_ID = '20611';
63+
const VERSION = '2.6.12';
64+
const VERSION_ID = '20612';
6565
const MAJOR_VERSION = '2';
6666
const MINOR_VERSION = '6';
67-
const RELEASE_VERSION = '11';
67+
const RELEASE_VERSION = '12';
6868
const EXTRA_VERSION = '';
6969

7070
/**

0 commit comments

Comments
 (0)