Skip to content

Commit 240e964

Browse files
committed
Merge pull request #17365 from fabpot/release-2.6.13
released v2.6.13
2 parents e05da26 + a651f54 commit 240e964

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG-2.6.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ 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.13 (2016-01-14)
11+
12+
* security #17359 do not ship with a custom rng implementation (xabbuh, fabpot)
13+
1014
* 2.6.12 (2015-11-23)
1115

1216
* security #16631 CVE-2015-8124: Session Fixation in the "Remember Me" Login Feature (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.12';
64-
const VERSION_ID = '20612';
63+
const VERSION = '2.6.13';
64+
const VERSION_ID = '20613';
6565
const MAJOR_VERSION = '2';
6666
const MINOR_VERSION = '6';
67-
const RELEASE_VERSION = '12';
67+
const RELEASE_VERSION = '13';
6868
const EXTRA_VERSION = '';
6969

7070
/**

0 commit comments

Comments
 (0)