8000 Merge pull request #20552 from fabpot/release-3.2.0-RC1 · symfony/symfony@7d00e4f · GitHub
[go: up one dir, main page]

Skip to content

Commit 7d00e4f

Browse files
authored
Merge pull request #20552 from fabpot/release-3.2.0-RC1
released v3.2.0-RC1
2 parents 9868b05 + 6f6bce4 commit 7d00e4f

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,53 @@ 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.0-RC1 (2016-11-17)
11+
12+
*
13+
14+
* 3.2.0-RC1 (2016-11-17)
15+
16+
* feature #20533 [DI] Revert "deprecate get() for uncompiled container builders" (nicolas-grekas)
17+
* bug #20525 [TwigBundle] Give some love to exception pages (nicolas-grekas)
18+
* bug #20484 bumped min version of Twig to 1.28 (fabpot)
19+
* bug #20512 [DI] Fix accepting null as default env param value (nicolas-grekas)
20+
* bug #20519 [Debug] Remove GLOBALS from exception context to avoid endless recursion (Seldaek)
21+
* bug #20455 [ClassLoader] Fix ClassCollectionLoader inlining with __halt_compiler (giosh94mhz)
22+
* bug #20307 [Form] Fix Date\TimeType marked as invalid on request with single_text and zero seconds (LuisDeimos)
23+
* bug #20432 [FrameworkBundle] Add --no-prefix option to translation:update (chalasr)
24+
* bug #20480 [FrameworkBundle] Register the ArrayDenormalizer (dunglas)
25+
* bug #20286 [Serializer] Fix DataUriNormalizer's regex (dunglas)
26+
* bug #20466 [Translation] fixed nested fallback catalogue using multiple locales. (aitboudad)
27+
* bug #20465 [#18637][TranslationDebug] workaround for getFallbackLocales. (aitboudad)
28+
* bug #20453 [Cache] Make directory hashing case insensitive (nicolas-grekas)
29+
* bug #20428 [TwigBundle] fixed template root path (fabpot)
30+
* feature #20447 [DI] Force env params to be string|null (nicolas-grekas)
31+
* feature #20451 [Workflow] Added Definition builder (Nyholm)
32+
* bug #20460 [FrameworkBundle] Fixed WorkflowCommand to support state machines (HeahDude)
33+
* bug #20440 [TwigBridge][TwigBundle][HttpKernel] prefer getSourceContext() over getSource() (xabbuh)
34+
* feature #19629 [Workflow] Make the Workflow support State Machines (Nyholm, lyrixx)
35+
* bug #20287 Properly format value in UniqueEntityValidator (alcaeus)
36+
* bug #20422 [Translation][fallback] add missing resources in parent catalogues. (aitboudad)
37+
* bug #20378 [Form] Fixed show float values as choice value in ChoiceType (yceruto)
38+
* feature #20416 [Bridge\Monolog][FrameworkBundle] Add & wire a DebugProcessor (nicolas-grekas)
39+
* bug #20415 [DI][Serializer] Add missing deprecations (nicolas-grekas)
40+
* bug #20294 Improved the design of the metrics in the profiler (javiereguiluz)
41+
* bug #20375 [HttpFoundation][Session] Fix memcache session handler (klandaika)
42+
* bug #20377 [Console] Fix infinite loop on missing input (chalasr)
43+
* feature #20232 [DependencyInjection] fixed ini file values conversion (fabpot)
44+
* feature #19490 [SecurityBundle] Integrate current firewall in Profiler (chalasr)
45+
* feature #19398 [DX][SecurityBundle] Introduce a FirewallConfig class accessible from FirewallContext (chalasr)
46+
* bug #20336 [HttpKernel] Base DataCollector throws warning on unsupported scheme strings (ogizanagi)
47+
* bug #20335 [Yaml] Fix String offset cast error in Inline parser (romainneutron)
48+
* bug #20372 [Console] simplified code (fabpot)
49+
* bug #20342 [Form] Fix UrlType transforms valid protocols (ogizanagi)
50+
* bug #20341 Fix YamlReferenceDumper unnamed nested prototypes (ogizanagi)
51+
* bug #20292 Enhance GAE compat by removing some realpath() (nicolas-grekas)
52+
* bug #20325 [VarDumper] Fix source links to Twig files (nicolas-grekas)
53+
* bug #20328 [Console] Fix empty COLUMNS/LINES env vars (nicolas-grekas)
54+
* bug #20326 [VarDumper] Fix dumping Twig source in stack traces (nicolas-grekas)
55+
* bug #20321 Compatibility with Twig 1.27 (xkobal)
56+
1057
* 3.2.0-BETA1 (2016-10-27)
1158

1259
* feature #19973 Added a default ide file link web view (jeremyFreeAgent)

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.0-DEV';
61+
const VERSION = '3.2.0-RC1';
6262
const VERSION_ID = 30200;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 0;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = 'RC1';
6767

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

0 commit comments

Comments
 (0)
0