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

Skip to content

Release v3.2.5 #21939

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
Mar 9, 2017
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
42 changes: 42 additions & 0 deletions CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,48 @@ 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.5 (2017-03-09)

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

* 3.2.4 (2017-02-16)

* bug #21634 [VarDumper] Added missing persistent stream cast (lyrixx)
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.5-DEV';
const VERSION = '3.2.5';
const VERSION_ID = 30205;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 5;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

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