Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,53 @@ in 3.2 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.2.0...v3.2.1

* 3.2.0-RC1 (2016-11-17)

*

* 3.2.0-RC1 (2016-11-17)

* feature #20533 [DI] Revert "deprecate get() for uncompiled container builders" (nicolas-grekas)
* bug #20525 [TwigBundle] Give some love to exception pages (nicolas-grekas)
* bug #20484 bumped min version of Twig to 1.28 (fabpot)
* bug #20512 [DI] Fix accepting null as default env param value (nicolas-grekas)
* bug #20519 [Debug] Remove GLOBALS from exception context to avoid endless recursion (Seldaek)
* bug #20455 [ClassLoader] Fix ClassCollectionLoader inlining with __halt_compiler (giosh94mhz)
* bug #20307 [Form] Fix Date\TimeType marked as invalid on request with single_text and zero seconds (LuisDeimos)
* bug #20432 [FrameworkBundle] Add --no-prefix option to translation:update (chalasr)
* bug #20480 [FrameworkBundle] Register the ArrayDenormalizer (dunglas)
* bug #20286 [Serializer] Fix DataUriNormalizer's regex (dunglas)
* bug #20466 [Translation] fixed nested fallback catalogue using multiple locales. (aitboudad)
* bug #20465 [#18637][TranslationDebug] workaround for getFallbackLocales. (aitboudad)
* bug #20453 [Cache] Make directory hashing case insensitive (nicolas-grekas)
* bug #20428 [TwigBundle] fixed template root path (fabpot)
* feature #20447 [DI] Force env params to be string|null (nicolas-grekas)
* feature #20451 [Workflow] Added Definition builder (Nyholm)
* bug #20460 [FrameworkBundle] Fixed WorkflowCommand to support state machines (HeahDude)
* bug #20440 [TwigBridge][TwigBundle][HttpKernel] prefer getSourceContext() over getSource() (xabbuh)
* feature #19629 [Workflow] Make the Workflow support State Machines (Nyholm, lyrixx)
* bug #20287 Properly format value in UniqueEntityValidator (alcaeus)
* bug #20422 [Translation][fallback] add missing resources in parent catalogues. (aitboudad)
* bug #20378 [Form] Fixed show float values as choice value in ChoiceType (yceruto)
* feature #20416 [Bridge\Monolog][FrameworkBundle] Add & wire a DebugProcessor (nicolas-grekas)
* bug #20415 [DI][Serializer] Add missing deprecations (nicolas-grekas)
* bug #20294 Improved the design of the metrics in the profiler (javiereguiluz)
* bug #20375 [HttpFoundation][Session] Fix memcache session handler (klandaika)
* bug #20377 [Console] Fix infinite loop on missing input (chalasr)
* feature #20232 [DependencyInjection] fixed ini file values conversion (fabpot)
* feature #19490 [SecurityBundle] Integrate current firewall in Profiler (chalasr)
* feature #19398 [DX][SecurityBundle] Introduce a FirewallConfig class accessible from FirewallContext (chalasr)
* bug #20336 [HttpKernel] Base DataCollector throws warning on unsupported scheme strings (ogizanagi)
* bug #20335 [Yaml] Fix String offset cast error in Inline parser (romainneutron)
* bug #20372 [Console] simplified code (fabpot)
* bug #20342 [Form] Fix UrlType transforms valid protocols (ogizanagi)
* bug #20341 Fix YamlReferenceDumper unnamed nested prototypes (ogizanagi)
* bug #20292 Enhance GAE compat by removing some realpath() (nicolas-grekas)
* bug #20325 [VarDumper] Fix source links to Twig files (nicolas-grekas)
* bug #20328 [Console] Fix empty COLUMNS/LINES env vars (nicolas-grekas)
* bug #20326 [VarDumper] Fix dumping Twig source in stack traces (nicolas-grekas)
* bug #20321 Compatibility with Twig 1.27 (xkobal)

* 3.2.0-BETA1 (2016-10-27)

* feature #19973 Added a default ide file link web view (jeremyFreeAgent)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '3.2.0-DEV';
const VERSION = '3.2.0-RC1';
const VERSION_ID = 30200;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'RC1';

const END_OF_MAINTENANCE = '07/2017';
const END_OF_LIFE = '01/2018';
Expand Down