8000 Merge pull request #20316 from fabpot/release-3.1.6 · symfony/symfony@8f345c3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8f345c3

Browse files
authored
Merge pull request #20316 from fabpot/release-3.1.6
released v3.1.6
2 parents c3b9690 + c1a76da commit 8f345c3

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

CHANGELOG-3.1.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ 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.6 (2016-10-27)
11+
12+
* bug #20291 [Yaml] Fix 7.1 compat (nicolas-grekas)
13+
* bug #20289 Fix edge case with StreamedResponse where headers are sent twice (Nicofuma)
14+
* bug #20267 [DependencyInjection] A decorated service should not keep the autowiring types (chalasr)
15+
* bug #20278 [DependencyInjection] merge tags instead of completely replacing them (xabbuh)
16+
* bug #20271 Changes related to Twig 1.27 (fabpot)
17+
* bug #20252 Trim constant values in XmlFileLoader (lstrojny)
18+
* bug #20239 [HttpKernel] Fix a regression in the RequestDataCollector (jakzal)
19+
* bug #20253 [TwigBridge] Use non-deprecated Twig_Node::getTemplateLine() (fabpot)
20+
* bug #20243 [WebProfilerBundle][btn-link] add `cursor: pointer` (aitboudad)
21+
* bug #20175 [VarDumper] Fix source links with latests Twig versions (nicolas-grekas)
22+
* bug #20235 [DomCrawler] Allow pipe (|) character in link tags when using Xpath expressions (klausi, nicolas-grekas)
23+
* bug #20224 [Twig] removed deprecations added in Twig 1.27 (fabpot)
24+
* bug #19478 fixed Filesystem:makePathRelative and added 2 more testcases (muhammedeminakbulut)
25+
* bug #20218 [HttpFoundation] no 304 response if method is not cacheable (xabbuh)
26+
* bug #20207 [DependencyInjection] move tags from decorated to decorating service (xabbuh)
27+
* bug #20205 [HttpCache] fix: do not cache OPTIONS request (dmaicher)
28+
* bug #20146 [Validator] Prevent infinite loop in PropertyMetadata (wesleylancel)
29+
* bug #20184 [FrameworkBundle] Convert null prefix to an empty string in translation:update (chalasr)
30+
* bug #20154 [PropertyInfo] Fix edge cases in ReflectionExtractor (nicolas-grekas)
31+
* bug #19725 [Security] $attributes can be anything, but RoleVoter assumes strings (Jonatan Männchen)
32+
* bug #20127 [HttpFoundation] JSONP callback validation (ro0NL)
33+
* bug #20163 add missing use statement (xabbuh)
34+
* bug #19961 [Console] Escape question text and default value in SymfonyStyle::ask() (chalasr)
35+
* bug #20141 [Console] Fix validation of empty values using SymfonyQuestionHelper::ask() (chalasr)
36+
* bug #20147 [FrameworkBundle] Alter container class instead of kernel name in cache:clear command (nicolas-grekas)
37+
* bug #20156 Fix event annotation for arguments resolving event (Koc)
38+
* bug #20152 [HttpKernel] Fix nullable types handling (nicolas-grekas)
39+
1040
* 3.1.5 (2016-10-03)
1141

1242
* bug #20102 [Validator] Url validator not validating hosts ending in a number (gwkunze)

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.6-DEV';
62+
const VERSION = '3.1.6';
6363
const VERSION_ID = 30106;
6464
const MAJOR_VERSION = 3;
6565
const MINOR_VERSION = 1;
6666
const RELEASE_VERSION = 6;
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