Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Release v3.2.3 #21544

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
Feb 6, 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
36 changes: 36 additions & 0 deletions 36 CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,42 @@ 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.3 (2017-02-06)

* bug #21528 [Cache] Fix class exists checks in PhpArrayAdapter (nicolas-grekas)
* bug #20844 [Config] Fix checking cache for non existing meta file (hason)
* bug #21063 [Form] Fixed DateType format option for single text widget (HeahDude)
* bug #21430 Casting TableCell value to string. (jaydiablo)
* bug #21359 [FrameworkBundle] fixed custom domain for translations in php templates (robinlehrmann)
* bug #21485 [Process] Non ASCII characters disappearing during the escapeshellarg (GuillaumeVerdon)
* bug #21370 [FrameworkBundle] Execute the PhpDocExtractor earlier (GuilhemN)
* bug #21462 [BrowserKit] ignore invalid cookies expires date format (xabbuh)
* bug #21438 [Console] Fix TableCell issues with decoration (ogizanagi)
* bug #21431 [DoctrineBridge] always check for all fields to be mapped (xabbuh)
* bug #21360 [PropertyAccess] Handle interfaces in the invalid argument exception (fancyweb)
* bug #21403 [DI] Fix defaults overriding empty strings in AutowirePass (nicolas-grekas)
* bug #21401 [Debug] Workaround "null" $context (nicolas-grekas)
* bug #21381 [FrameworkBundle] Dont wire "annotations.cached_reader" before removing passes (nicolas-grekas)
* bug #21387 Fix double escaping of the decision attributes in the profiler (stof)
* bug #21372 [DependencyInjection] Fixed variadic method parameter in autowired classes (brainexe)
* bug #21338 [Cache] Fix tags expiration (nicolas-grekas)
* bug #21333 [HttpKernel] Fix ArgumentValueResolver for arguments default null (chalasr)
* bug #20871 [HttpKernel] Give higher priority to adding request formats (akeeman)
* bug #21332 [PropertyInfo] Don't try to access a property thru a static method (dunglas)
* bug #21336 [PhpUnit] Blacklist DeprecationErrorHandler in stack traces (nicolas-grekas)
* bug #21331 [PropertyInfo] Exclude static methods form properties guessing (dunglas)
* bug #21280 [Workflow] Fixed support of multiple transitions with the same name. (lyrixx)
* bug #21271 [Workflow] Added new validator to make sure each place has unique translation names (Nyholm)
* bug #21323 [Cache] [PdoAdapter] Fix MySQL 1170 error (blob as primary key) (akeeman)
* bug #21318 Don't add csp-headers if none are required (arjenm)
* bug #21291 [Ldap] Ldap username case fix (quentinus95)
* bug #21311 [Debug] Fix fatal error when changing ErrorHandler loggers if an exception is buffered (skalpa)
* bug #21288 [Doctrine Bridge] fix UniqueEntityValidator for composite object primary keys (dmaicher, HeahDude)
* bug #21285 [TwigBundle] do not lose already set method calls (xabbuh)
* bug #21279 #20411 fix Yaml parsing for very long quoted strings (RichardBradley)
* bug #21276 [Cache] Fix missing use statement in FilesystemAdapter (Lctrs)
* bug #21269 [Cache] Using strpbrk() instead of strcspn() is faster (nicolas-grekas)

* 3.2.2 (2017-01-12)

* bug #21257 [Profiler][Form] Fix form profiler errors profiler_dump (ogizanagi)
Expand Down
4 changes: 2 additions & 2 deletions 4 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.3-DEV';
const VERSION = '3.2.3';
const VERSION_ID = 30203;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 3;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '07/2017';
const END_OF_LIFE = '01/2018';
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.