8000 Merge pull request #20575 from fabpot/release-3.1.7 · src-run/symfony@db1c32c · GitHub
[go: up one dir, main page]

Skip to content

Commit db1c32c

Browse files
authored
Merge pull request symfony#20575 from fabpot/release-3.1.7
released v3.1.7
2 parents c01a1a9 + 386fd29 commit db1c32c

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG-3.1.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ in 3.1 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/v3.1.0...v3.1.1
99

10+
* 3.1.7 (2016-11-21)
11+
12+
* bug #20550 [YAML] Fix processing timestamp strings with timezone (myesain)
13+
* bug #20543 [DI] Fix error when trying to resolve a DefinitionDecorator (nicolas-grekas)
14+
* bug #20544 [PhpUnitBridge] Fix time-sensitive tests that use data providers (julienfalque)
15+
* bug #20484 bumped min version of Twig to 1.28 (fabpot)
16+
* bug #20519 [Debug] Remove GLOBALS from exception context to avoid endless recursion (Seldaek)
17+
* bug #20455 [ClassLoader] Fix ClassCollectionLoader inlining with __halt_compiler (giosh94mhz)
18+
* bug #20307 [Form] Fix Date\TimeType marked as invalid on request with single_text and zero seconds (LuisDeimos)
19+
* bug #20480 [FrameworkBundle] Register the ArrayDenormalizer (dunglas)
20+
* bug #20286 [Serializer] Fix DataUriNormalizer's regex (dunglas)
21+
* bug #20466 [Translation] fixed nested fallback catalogue using multiple locales. (aitboudad)
22+
* bug #20465 [#18637][TranslationDebug] workaround for getFallbackLocales. (aitboudad)
23+
* bug #20453 [Cache] Make directory hashing case insensitive (nicolas-grekas)
24+
* bug #20440 [TwigBridge][TwigBundle][HttpKernel] prefer getSourceContext() over getSource() (xabbuh)
25+
* bug #20287 Properly format value in UniqueEntityValidator (alcaeus)
26+
* bug #20422 [Translation][fallback] add missing resources in parent catalogues. (aitboudad)
27+
* bug #20378 [Form] Fixed show float values as choice value in ChoiceType (yceruto)
28+
* bug #20294 Improved the design of the metrics in the profiler (javiereguiluz)
29+
* bug #20375 [HttpFoundation][Session] Fix memcache session handler (klandaika)
30+
* bug #20377 [Console] Fix infinite loop on missing input (chalasr)
31+
* bug #20372 [Console] simplified code (fabpot)
32+
* bug #20342 [Form] Fix UrlType transforms valid protocols (ogizanagi)
33+
* bug #20292 Enhance GAE compat by removing some realpath() (nicolas-grekas)
34+
* bug #20326 [VarDumper] Fix dumping Twig source in stack traces (nicolas-grekas)
35+
* bug #20321 Compatibility with Twig 1.27 (xkobal)
36+
1037
* 3.1.6 (2016-10-27)
1138

1239
* bug #20291 [Yaml] Fix 7.1 compat (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

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

62-
const VERSION = '3.1.7-DEV';
62+
const VERSION = '3.1.7';
6363
const VERSION_ID = 30107;
6464
const MAJOR_VERSION = 3;
6565
const MINOR_VERSION = 1;
6666
const RELEASE_VERSION = 7;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '01/2017';
7070
const END_OF_LIFE = '07/2017';

0 commit comments

Comments
 (0)
0