8000 Merge pull request #16638 from fabpot/release-2.7.7 · symfony/symfony@cc69dbd · GitHub
[go: up one dir, main page]

Skip to content

Commit cc69dbd

Browse files
committed
Merge pull request #16638 from fabpot/release-2.7.7
released v2.7.7
2 parents 5edc71e + d99f241 commit cc69dbd

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG-2.7.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ 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.7 (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+
* bug #16588 Sent out a status text for unknown HTTP headers. (dawehner)
15+
* bug #16295 [DependencyInjection] Unescape parameters for all types of injection (Nicofuma)
16+
* bug #16574 [Process] Fix PhpProcess with phpdbg runtime (nicolas-grekas)
17+
* bug #16578 [Console] Fix bug in windows detection (kbond)
18+
* bug #16546 [Serializer] ObjectNormalizer: don't serialize static methods and props (dunglas)
19+
* bug #16352 Fix the server variables in the router_*.php files (leofeyer)
20+
* bug #16537 [Validator] Allow an empty path with a non empty fragment or a query (jakzal)
21+
* bug #16528 [Translation] Add support for Armenian pluralization. (marcosdsanchez)
22+
* bug #16510 [Process] fix Proccess run with pts enabled (ewgRa)
23+
* bug #16292 fix race condition at mkdir (#16258) (ewgRa)
24+
* bug #15945 [Form] trigger deprecation warning when using empty_value (xabbuh)
25+
* bug #16384 [FrameworkBundle] JsonDescriptor - encode container params only once (xabbuh)
26+
* bug #16480 [VarDumper] Fix PHP7 type-hints compat (nicolas-grekas)
27+
* bug #16463 [PropertyAccess] Port of the performance optimization from 2.3 (dunglas)
28+
* bug #16462 [PropertyAccess] Fix dynamic property accessing. (dunglas)
29+
* bug #16454 [Serializer] GetSetNormalizer shouldn't set/get static methods (boekkooi)
30+
* bug #16453 [Serializer] PropertyNormalizer shouldn't set static properties (boekkooi)
31+
* bug #16471 [VarDumper] Fix casting for ReflectionParameter (nicolas-grekas)
32+
* bug #16294 [PropertyAccess] Major performance improvement (dunglas)
33+
* bug #16331 fixed Twig deprecation notices (fabpot)
34+
* bug #16306 [DoctrineBridge] Fix issue which prevent the profiler to explain a query (Baachi)
35+
* bug #16359 Use mb_detect_encoding with $strict = true (nicolas-grekas)
36+
* bug #16144 [Security] don't allow to install the split Security packages (xabbuh)
37+
1038
* 2.7.6 (2015-10-27)
1139

1240
* bug #16338 [VarDumper] Fix anonymous class dumping (nicolas-grekas)

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