Skip to content

Release v3.2.0-RC2 #20649

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 27, 2016
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
27 changes: 27 additions & 0 deletions CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ 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-RC2 (2016-11-27)

* bug #20601 [FrameworkBundle] Don't rely on any parent definition for "cache.annotations" (nicolas-grekas)
* bug #20638 Fix legacy tests that do not trigger any depreciation (julienfalque)
* bug #20374 [FrameworkBundle] Improve performance of ControllerNameParser (enumag)
* bug #20474 [Routing] Fail properly when a route parameter name cannot be used as a PCRE subpattern name (fancyweb)
* bug #20616 [Bridge/Doctrine] Use cache.prefix.seed parameter for generating cache namespace (nicolas-grekas)
* bug #20566 [DI] Initialize properties before method calls (ro0NL)
* bug #20583 [Workflow] Fixed graphviz dumper for state machine (lyrixx)
* bug #20621 [HttpKernel] Fix exception when serializing request attributes (nicolas-grekas)
* bug #20609 [DI] Fixed custom services definition BC break introduced in ec7e70fb… (kiler129)
* bug #20598 [DI] Aliases should preserve the aliased invalid behavior (nicolas-grekas)
* bug #20600 [Process] Fix process continuing after reached timeout using getIterator() (chalasr)
* bug #20603 [HttpKernel] Deprecate checking for cacheable HTTP methods in Request::isMethodSafe() (nicolas-grekas)
* bug #20602 [HttpKernel] Revert BC breaking change of Request::isMethodSafe() (nicolas-grekas)
* bug #20610 [FrameworkBundle] Add framework.cache.prefix_seed for predictible cache key prefixes (nicolas-grekas)
* bug #20595 [WebProfilerBundle] Fix deprecated uses of profiler_dump (nicolas-grekas)
* bug #20589 [SecurityBundle] Fix FirewallConfig nullable arguments (ogizanagi)
* bug #20590 [DI] Allow null as default env value (sroze)
* bug #20499 [Doctrine][Form] support large integers (xabbuh)
* bug #20559 [FrameworkBundle] Avoid warming up the validator cache for non-existent class (Seldaek)
* bug #20576 [Process] Do feat test before enabling TTY mode (nicolas-grekas)
* bug #20577 [FrameworkBundle] Mark cache.default_*_provider services private (nicolas-grekas)
* bug #20550 [YAML] Fix processing timestamp strings with timezone (myesain)
* bug #20543 [DI] Fix error when trying to resolve a DefinitionDecorator (nicolas-grekas)
* bug #20544 [PhpUnitBridge] Fix time-sensitive tests that use data providers (julienfalque)

* 3.2.0-RC1 (2016-11-17)

* feature #20533 [DI] Revert "deprecate get() for uncompiled container builders" (nicolas-grekas)
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-RC2';
const VERSION_ID = 30200;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'RC2';

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