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

Skip to content

Commit c166da4

Browse files
authored
Merge pull request #24955 from fabpot/release-2.7.37
released v2.7.37
2 parents 5fa5ef7 + 9a16106 commit c166da4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-2.7.md

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

10+
* 2.7.37 (2017-11-13)
11+
12+
* bug #24952 [HttpFoundation] Fix session-related BC break (nicolas-grekas, sroze)
13+
* bug #24929 [Console] Fix traversable autocomplete values (ro0NL)
14+
1015
* 2.7.36 (2017-11-10)
1116

1217
* bug #24888 [FrameworkBundle] Specifically inject the debug dispatcher in the collector (ogizanagi)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $startTime;
5959
protected $loadClassCache;
6060

61-
const VERSION = '2.7.37-DEV';
61+
const VERSION = '2.7.37';
6262
const VERSION_ID = 20737;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
6565
const RELEASE_VERSION = 37;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '05/2018';
6969
const END_OF_LIFE = '05/2019';

0 commit comments

Comments
 (0)