8000 Merge pull request #20897 from fabpot/release-3.2.1 · devrck/symfony@5824d42 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5824d42

Browse files
authored
Merge pull request symfony#20897 from fabpot/release-3.2.1
released v3.2.1
2 parents 2422f7d + d884a52 commit 5824d42

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,52 @@ in 3.2 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.2.0...v3.2.1
99

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

1258
* bug #20687 [FrameworkBundle] Forbid env parameters in routing configuration (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $startTime;
5959
protected $loadClassCache;
6060

61-
const VERSION = '3.2.1-DEV';
61+
const VERSION = '3.2.1';
6262
const VERSION_ID = 30201;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 1;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '07/2017';
6969
const END_OF_LIFE = '01/2018';

0 commit comments

Comments
 (0)
0