Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 463b655

Browse files
authored
Merge pull request #21939 from fabpot/release-3.2.5
released v3.2.5
2 parents 575b798 + 7ee31a7 commit 463b655

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ in 3.2 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.2.0...v3.2.1
99

10+
* 3.2.5 (2017-03-09)
11+
12+
* bug #21923 [travis] Test with hhvm 3.18 (nicolas-grekas)
13+
* bug #21793 [Workflow] Fixed marking state on leave and enter events (HeahDude)
14+
* bug #21912 [Yaml] dump escape sequences when possible (xabbuh)
15+
* bug #21908 [Cache] Fix Redis pipelining/multi-ops (nicolas-grekas)
16+
* bug #21823 dumpFile(), preserve existing file permissions (chs2)
17+
* bug #21880 [Form] Fixed overridden choices option in extended choice types (HeahDude)
18+
* bug #21896 [PHPunitBridge] Count @expectedDeprecation as an assertion (wouterj)
19+
* bug #21865 [Security] context listener: hardening user provider handling (xabbuh)
20+
* bug #21883 [HttpKernel] fix Kernel name when stored in a directory starting with a number (fabpot)
21+
* bug #21841 [Console] Do not squash input changes made from console.command event (chalasr)
22+
* bug #21481 [Form] Fixed empty conversion of Intl types (HeahDude)
23+
* bug #21671 [Serializer] Xml encoder throws exception for valid data (gr1ev0us)
24+
* bug #21805 Provide less state in getRequestFormat (dawehner)
25+
* bug #21851 Adding use statement for InvalidArgumentException (Nyholm)
26+
* bug #21832 [Routing] Ignore hidden directories when loading routes from annotations (jakzal)
27+
* bug #21769 [Form] Improve rounding precision (foaly-nr1)
28+
* bug #21825 [PhpUnitBridge] disable global test listener when not registered (xabbuh)
29+
* bug #21267 [Form] Fix ChoiceType to ensure submitted data is not nested unnecessarily (issei-m)
30+
* bug #21813 Update phpstorm helper to the official format (pierredup)
31+
* bug #21731 Fix emacs link (rubenrua)
32+
* bug #21802 Fix issues reported by static analyse (romainneutron)
33+
* bug #21800 Fix issues reported by static analyze (romainneutron)
34+
* bug #21782 [DependencyInjection] add missing dumped private services list in a container frozen constructor. (hhamon)
35+
* bug #21798 Revert "bug #21791 [SecurityBundle] only pass relevant user provider (xabbuh)" (xabbuh)
36+
* bug #21791 [SecurityBundle] only pass relevant user provider (xabbuh)
37+
* bug #21776 [Process] Fix ignoring of bad env var names (nicolas-grekas)
38+
* bug #21787 [PhpUnitBridge] do not register the test listener twice (xabbuh)
39+
* bug #21756 [Yaml] Stop replacing NULLs when merging (gadelat)
40+
* bug #21689 [WebServerBundle] fixed html attribute escape (Seb33300)
41+
* bug #21722 [ExpressionLanguage] Registering functions after calling evaluate(), compile() or parse() is not supported (maidmaid)
42+
* bug #21679 [SecurityBundle] fix priority ordering of security voters (xabbuh)
43+
* bug #21656 [DoctrineBridge] Fixed validating custom doctrine type columns (dmaicher)
44+
* bug #21115 [Validator] do not guess getter method names (xabbuh)
45+
* bug #21670 [DependencyInjection] Fix autowiring types when there are more than 2 services colliding (GuilhemN)
46+
* bug #21665 [DependencyInjection] Fix autowiring collisions detection (nicolas-grekas, GuilhemN)
47+
* bug #21661 Fix Composer constraints (fabpot)
48+
* bug #21582 [HttpCache] purge both http and https from http cache (dbu)
49+
* bug #21637 [FrameworkBundle] remove translation data collector when not usable (xabbuh)
50+
* bug #21647 [Yaml] consistently parse omitted keys as the colon (xabbuh)
51+
1052
* 3.2.4 (2017-02-16)
1153

1254
* bug #21634 [VarDumper] Added missing persistent stream cast (lyrixx)

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 = '3.2.5-DEV';
61+
const VERSION = '3.2.5';
6262
const VERSION_ID = 30205;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 5;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '07/2017';
6969
const END_OF_LIFE = '01/2018';

0 commit comments

Comments
 (0)