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

Skip to content

Commit 78c08f2

Browse files
authored
Merge pull request #22947 from fabpot/release-3.2.9
released v3.2.9
2 parents 538591c + a948880 commit 78c08f2

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ 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.9 (2017-05-29)
11+
12+
* bug #22847 [Console] ChoiceQuestion must have choices (ro0NL)
13+
* bug #22900 [FrameworkBundle][Console] Fix the override of a command registered by the kernel (aaa2000)
14+
* bug #22910 [Filesystem] improve error handling in lock() (xabbuh)
15+
* bug #22924 [Cache] Dont use pipelining with RedisCluster (nicolas-grekas)
16+
* bug #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee)
17+
* bug #22829 [Yaml] fix colon without space deprecation (xabbuh)
18+
* bug #22901 Fix missing abstract key in XmlDumper (weaverryan)
19+
* bug #22912 [DI] Avoid private call to Container::has() (ro0NL)
20+
* bug #22866 [DI] Check for privates before shared services (ro0NL)
21+
* bug #22874 [WebProfilerBundle] Fix sub-requests display in time profiler panel (nicolas-grekas)
22+
* bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh)
23+
* bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz)
24+
* bug #22715 [FrameworkBundle] remove Security deps from the require section (xabbuh)
25+
* bug #22647 [VarDumper] Fix dumping of non-nested stubs (nicolas-grekas)
26+
* bug #22409 [Yaml] respect inline level when dumping objects as maps (goetas, xabbuh)
27+
* bug #22584 [Security] Avoid unnecessary route lookup for empty logout path (ro0NL)
28+
* bug #22690 [Console] Fix errors not rethrown even if not handled by console.error listeners (chalasr)
29+
* bug #22669 [FrameworkBundle] AbstractConfigCommand: do not try registering bundles twice (ogizanagi)
30+
* bug #22676 [FrameworkBundle] Adding the extension XML (flug)
31+
* bug #22652 [Workflow] Move twig extension registration to twig bundle (ogizanagi)
32+
1033
* 3.2.8 (2017-05-01)
1134

1235
* bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid)

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.9-DEV';
61+
const VERSION = '3.2.9';
6262
const VERSION_ID = 30209;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 9;
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)