8000 Merge pull request #19055 from fabpot/release-3.1.1 · symfony/symfony@6e1b149 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6e1b149

Browse files
authored
Merge pull request #19055 from fabpot/release-3.1.1
released v3.1.1
2 parents de03922 + 75209e2 commit 6e1b149

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

CHANGELOG-3.1.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ 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.1 (2016-06-15)
11+
12+
* bug #19048 [HttpFoundation] Use UPSERT for sessions stored in PgSql >= 9.5 (nicolas-grekas)
13+
* bug #19042 [Cache] Fix double fetch in ProxyAdapter (nicolas-grekas)
14+
* bug #19038 Fix feature detection for IE (Alsciende)
15+
* bug #18915 [DependencyInjection] force enabling the external XML entity loaders (xabbuh)
16+
* bug #19020 [Form] Fixed collapsed choice attributes (HeahDude)
17+
* bug #19028 [Yaml] properly count skipped comment lines (xabbuh)
18+
* bug #19009 [WebProfilerBundle] Fix invalid CSS style (romainneutron)
19+
* bug #17733 [Yaml] Fix wrong line number when comments are inserted in the middle of a block. (paradajozsef)
20+
* bug #18909 Fixed singular of committee (peterrehm)
21+
* bug #18911 Fixed singular of committee (peterrehm)
22+
* bug #18971 Do not inject web debug toolbar on attachments (peterrehm)
23+
* bug #18944 [Ldap] Fixed issue with legacy client initialisation (csarrazi)
24+
* bug #18974 Added missing APCU CacheProvider of doctrine/cache 1.6.x (Carsten Eilers)
25+
* bug #18954 [HttpKernel] Fix RequestDataCollector starting the session (romainneutron)
26+
* bug #18949 [Security] Fix DebugAccessDecisionManager when object is not a scalar (romainneutron)
27+
* bug #18959 [WebProfilerBundle] Fixed forwarded request data in templates (HeahDude)
28+
* bug #18943 [Ldap][Security] The Ldap user provider abstract service now has the correct number of arguments (csarrazi)
29+
* bug #18925 [Console] Fix BC break introduced by #18101 (dunglas)
30+
* bug #18908 [DependencyInjection] force enabling the external XML entity loaders (xabbuh)
31+
* bug #18893 [DependencyInjection] Skip deep reference check for 'service_container' (RobertMe)
32+
* bug #18812 Catch \Throwable (fprochazka)
33+
* bug #18821 [Form] Removed UTC specification with timestamp (francisbesset)
34+
* bug #18861 Fix for #18843 (inso)
35+
1036
* 3.1.0 (2016-05-30)
1137

1238
* bug #18889 [Console] SymfonyStyle: Fix alignment/prefixing of multi-line comments (chalasr)

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