Skip to content

Commit b95964a

Browse files
authored
Merge pull request symfony#24997 from fabpot/release-2.7.38
released v2.7.38
2 parents 7993ce5 + 330c5e5 commit b95964a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG-2.7.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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.38 (2017-11-16)
11+
12+
* security #24995 Validate redirect targets using the session cookie domain (nicolas-grekas)
13+
* security #24994 Prevent bundle readers from breaking out of paths (xabbuh)
14+
* security #24993 Ensure that submitted data are uploaded files (xabbuh)
15+
* security #24992 Namespace generated CSRF tokens depending of the current scheme (dunglas)
16+
1017
* 2.7.37 (2017-11-13)
1118

1219
* bug #24952 [HttpFoundation] Fix session-related BC break (nicolas-grekas, sroze)

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.38-DEV';
61+
const VERSION = '2.7.38';
6262
const VERSION_ID = 20738;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
6565
const RELEASE_VERSION = 38;
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)