Skip to content

Commit d3646cc

Browse files
committed
Merge pull request symfony#17367 from fabpot/release-2.7.9
released v2.7.9
2 parents f898fa7 + c9b1a84 commit d3646cc

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG-2.7.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ 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.9 (2016-01-14)
11+
12+
* security #17359 do not ship with a custom rng implementation (xabbuh, fabpot)
13+
* bug #17314 Fix max width for multibyte keys in choice question (mheki)
14+
* bug #17326 [Console] Display console application name even when no version set (polc)
15+
* bug #17328 [Serializer] Allow to use proxies in object_to_populate (dunglas)
16+
* bug #17347 Workaround https://bugs.php.net/63206 (nicolas-grekas)
17+
* bug #17140 [Serializer] Remove normalizer cache in Serializer class (jvasseur)
18+
* bug #17307 [FrameworkBundle] Fix paths with % in it (like urlencoded) (scaytrase)
19+
* bug #17078 [Bridge] [Doctrine] [Validator] Added support \IteratorAggregate for UniqueEntityValidator (Disparity)
20+
* bug #17298 [FrameworkBundle] Use proper class to fetch $versionStrategy property (dosten)
21+
* bug #17287 [HttpKernel] Forcing string comparison on query parameters sort in UriSigner (Tim van Densen)
22+
* bug #17279 [FrameworkBundle] Add case in Kernel directory guess for PHPUnit (tgalopin)
23+
* bug #17278 [FrameworkBundle] Add case in Kernel directory guess for PHPUnit (tgalopin)
24+
* bug #17275 [PhpUnitBridge] Re-enable the garbage collector (nicolas-grekas)
25+
* bug #17276 [Process] Fix potential race condition (nicolas-grekas)
26+
* bug #17183 [FrameworkBundle] Set the kernel.name properly after a cache warmup (jakzal)
27+
* bug #17159 [Yaml] recognize when a block scalar is left (xabbuh)
28+
* bug #17195 bug #14246 [Filesystem] dumpFile() non atomic (Hidde Boomsma)
29+
* feature #16747 [Form] Improved performance of ChoiceType and its subtypes (webmozart)
30+
* bug #17177 [Process] Fix potential race condition leading to transient tests (nicolas-grekas)
31+
* bug #17163 [Form] fix Catchable Fatal Error if choices is not an array (Gladhon, nicolas-grekas)
32+
* bug #17119 [Form] improve deprecation message for "empty_value" and "choice_list" options. (hhamon)
33+
1034
* 2.7.8 (2015-12-26)
1135

1236
* bug #16864 [Yaml] fix indented line handling in folded blocks (xabbuh)

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