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.1 #20897

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
Dec 13, 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
46 changes: 46 additions & 0 deletions 46 CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,52 @@ 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.1 (2016-12-13)

* bug #20891 Add support for REDIS_URL environment variables. (robinvdvleuten)
* bug #20724 [WebProfilerBundle] Fix AJAX panel with fetch requests (OnekO)
* bug #20883 Don’t compile when Opcache is not enabled on CLI (ruudk)
* bug #20877 DateIntervalType: 'invert' should not inherit the 'required' option (galeaspablo)
* bug #20886 [Form] DateIntervalType: Do not try to translate choices (ogizanagi)
* bug #20855 [Yaml] do not trigger deprecations for valid YAML (xabbuh)
* bug #20714 [FrameworkBundle] Fix unresolved parameters from default configs in debug:config (chalasr)
* bug #20862 Allow simple-phpunit to be used with an HTTP proxy (Cydonia7)
* bug #20882 [TwigBridge] fix constructor args check (xabbuh)
* bug #20860 [WebProfilerBundle] Fix a web profiler form issue with fields added to the form after the form was built (tgalopin)
* bug #20442 [FrameworkBundle] Bundle commands are not available via find() (julienfalque)
* bug #20840 [WebProfilerBundle] add dependency on Twig (xabbuh)
* bug #20833 [HttpKernel] Fix open_basedir compat in DataCollector (nicolas-grekas)
* bug #20828 [Validator] Fix init of YamlFileLoader::$classes for empty files (nicolas-grekas)
* bug #20688 [FrameworkBundle] Resolve env params in debug:config command (nicolas-grekas)
* bug #20725 [HttpKernel] Fix annotation cache warmer with failing or missing classes (nicolas-grekas)
* bug #20830 [FrameworkBundle] Fix validation cache warmer with failing or missing classes (nicolas-grekas)
* bug #20760 [FrameworkBundle] [Workflow] Fix service marking store configuration (fduch)
* bug #20745 [Validator] add class name to the cache key (Simperfit)
* bug #20530 [Serializer] Remove AbstractObjectNormalizer::isAttributeToNormalize (dunglas)
* bug #19141 Throw less misleading exception when property access not found (bramtweedegolf)
* bug #20539 Cast result to int before adding to it (alcaeus)
* bug #20831 [Twig] Fix deprecations with Twig 1.29 (nicolas-grekas)
* bug #20701 Ignore missing 'debug.file_link_formatter' service in Debug and Twig bundles (mbabker)
* bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool namespace seed (Sander Toonen)
* bug #20769 [Bridge\Twig] Trigger deprecation when using FormExtension::$renderer (nicolas-grekas)
* bug #20646 Maintain the selected panel when redirecting to another profile (javiereguiluz)
* bug #20767 [Cache] Fix dumping SplDoublyLinkedList iter mode (nicolas-grekas)
* bug #20690 [Serializer] Fix argument object denormalization (ogizanagi)
* bug #20762 [Form] Fix FormDataCollector (nicolas-grekas, Padam87)
* bug #20747 [HttpKernel] Fixed RequestDataCollector handling of null header values. (Gabriel Moreira)
* bug #20727 [TwigBundle] Inject project root path into twig filesystem loader (4rthem)
* bug #20736 [Console] fixed PHP7 Errors when not using Dispatcher (keradus)
* bug #20756 [HttpKernel] Regression test for missing controller arguments (iltar)
* bug #20755 [HttpKernel] Regression test for missing controller arguments (iltar)
* bug #20732 fix the inline level for dumped multi-line strings (xabbuh)
* bug #20418 [Form][DX] FileType "multiple" fixes (yceruto)
* bug #19902 [DependencyInjection] PhpDumper.php: hasReference() shouldn't search references in lazy service. (antanas-arvasevicius)
* bug #20704 [Console] Fix wrong handling of multiline arg/opt descriptions (ogizanagi)
* bug #20700 [WebProfilerBundle][Translator] Fix TranslationDataCollector should use cloneVar (ogizanagi)
* bug #20712 [TwigBundle] Fix twig loader registered twice (ogizanagi)
* bug #20716 [WebProfilerBundle] Fix dump block is unfairly restrained (ogizanagi)
* bug #20717 Fix hide button in toolbar (nicolasdewez)

* 3.2.0 (2016-11-30)

* bug #20687 [FrameworkBundle] Forbid env parameters in routing configuration (nicolas-grekas)
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.1-DEV';
const VERSION = '3.2.1';
const VERSION_ID = 30201;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 2;
const RELEASE_VERSION = 1;
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.