8000 Merge pull request #18885 from fabpot/release-3.1.0-RC1 · symfony/symfony@52f75d8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 52f75d8

Browse files
committed
Merge pull request #18885 from fabpot/release-3.1.0-RC1
released v3.1.0-RC1
2 parents af79ff6 + ebcbca0 commit 52f75d8

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-3.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ 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.0-RC1 (2016-05-26)
11+
12+
* bug #18879 [Console] SymfonyStyle: Align multi-line/very-long-line blocks (chalasr)
13+
* bug #18881 [Security][Ldap] Fixed issue with password attribute containing an array of values. (csarrazi)
14+
* bug #18864 [Console][DX] Fixed ambiguous error message when using a duplicate option shortcut (peterrehm)
15+
* bug #18883 Fix js comment in profiler (linnaea)
16+
* feature #18867 [Cache] Drop counting hit/miss in ProxyAdapter (nicolas-grekas)
17+
* bug #18837 [Serializer] AbstractObjectNormalizer: be sure that isAllowedAttribute is called (dunglas)
18+
* bug #18838 [Serializer] ObjectNormalizer: add missing parameters (dunglas)
19+
* bug #18844 [Yaml] fix exception contexts (xabbuh)
20+
* bug #18840 [Yaml] properly handle unindented collections (xabbuh)
21+
* bug #18765 Catch \Throwable (fprochazka)
22+
* bug #18813 Catch \Throwable (fprochazka)
23+
* bug #18839 People - person singularization (Keeo)
24+
* bug #18820 [Config] Allow schemed paths in FileResource (nicolas-grekas)
25+
* bug #18828 [Yaml] chomp newlines only at the end of YAML documents (xabbuh)
26+
* bug #18814 Fixed server status command when port has been omitted (peterrehm)
27+
* bug #18759 [Validator] Support for DateTimeImmutable (krzysiekpiasecki)
28+
* bug #18799 Use levenshtein level for better Bundle matching (j0k3r)
29+
* bug #18413 [WebProfilerBundle] Fix CORS ajax security issues (romainneutron)
30+
1031
* 3.1.0-BETA1 (2016-05-13)
1132

1233
* feature #18725 [Ldap] Added the possibility to configure all available Ldap options for connection (csarrazi)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
8B26
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.0-DEV';
62+
const VERSION = '3.1.0-RC1';
6363
const VERSION_ID = 30100;
6464
const MAJOR_VERSION = 3;
6565
const MINOR_VERSION = 1;
6666
const RELEASE_VERSION = 0;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = 'RC1';
6868

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

0 commit comments

Comments
 (0)
0