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

Commit 6306409

Browse filesBrowse files
authored
Merge pull request #21544 from fabpot/release-3.2.3
released v3.2.3
2 parents 6516a20 + d66d98e commit 6306409
Copy full SHA for 6306409

File tree

2 files changed

+38
-2
lines changed
Filter options

2 files changed

+38
-2
lines changed

‎CHANGELOG-3.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.2.md
+36Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,42 @@ 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.3 (2017-02-06)
11+
12+
* bug #21528 [Cache] Fix class exists checks in PhpArrayAdapter (nicolas-grekas)
13+
* bug #20844 [Config] Fix checking cache for non existing meta file (hason)
14+
* bug #21063 [Form] Fixed DateType format option for single text widget (HeahDude)
15+
* bug #21430 Casting TableCell value to string. (jaydiablo)
16+
* bug #21359 [FrameworkBundle] fixed custom domain for translations in php templates (robinlehrmann)
17+
* bug #21485 [Process] Non ASCII characters disappearing during the escapeshellarg (GuillaumeVerdon)
18+
* bug #21370 [FrameworkBundle] Execute the PhpDocExtractor earlier (GuilhemN)
19+
* bug #21462 [BrowserKit] ignore invalid cookies expires date format (xabbuh)
20+
* bug #21438 [Console] Fix TableCell issues with decoration (ogizanagi)
21+
* bug #21431 [DoctrineBridge] always check for all fields to be mapped (xabbuh)
22+
* bug #21360 [PropertyAccess] Handle interfaces in the invalid argument exception (fancyweb)
23+
* bug #21403 [DI] Fix defaults overriding empty strings in AutowirePass (nicolas-grekas)
24+
* bug #21401 [Debug] Workaround "null" $context (nicolas-grekas)
25+
* bug #21381 [FrameworkBundle] Dont wire "annotations.cached_reader" before removing passes (nicolas-grekas)
26+
* bug #21387 Fix double escaping of the decision attributes in the profiler (stof)
27+
* bug #21372 [DependencyInjection] Fixed variadic method parameter in autowired classes (brainexe)
28+
* bug #21338 [Cache] Fix tags expiration (nicolas-grekas)
29+
* bug #21333 [HttpKernel] Fix ArgumentValueResolver for arguments default null (chalasr)
30+
* bug #20871 [HttpKernel] Give higher priority to adding request formats (akeeman)
31+
* bug #21332 [PropertyInfo] Don't try to access a property thru a static method (dunglas)
32+
* bug #21336 [PhpUnit] Blacklist DeprecationErrorHandler in stack traces (nicolas-grekas)
33+
* bug #21331 [PropertyInfo] Exclude static methods form properties guessing (dunglas)
34+
* bug #21280 [Workflow] Fixed support of multiple transitions with the same name. (lyrixx)
35+
* bug #21271 [Workflow] Added new validator to make sure each place has unique translation names (Nyholm)
36+
* bug #21323 [Cache] [PdoAdapter] Fix MySQL 1170 error (blob as primary key) (akeeman)
37+
* bug #21318 Don't add csp-headers if none are required (arjenm)
38+
* bug #21291 [Ldap] Ldap username case fix (quentinus95)
39+
* bug #21311 [Debug] Fix fatal error when changing ErrorHandler loggers if an exception is buffered (skalpa)
40+
* bug #21288 [Doctrine Bridge] fix UniqueEntityValidator for composite object primary keys (dmaicher, HeahDude)
41+
* bug #21285 [TwigBundle] do not lose already set method calls (xabbuh)
42+
* bug #21279 #20411 fix Yaml parsing for very long quoted strings (RichardBradley)
43+
* bug #21276 [Cache] Fix missing use statement in FilesystemAdapter (Lctrs)
44+
* bug #21269 [Cache] Using strpbrk() instead of strcspn() is faster (nicolas-grekas)
45+
1046
* 3.2.2 (2017-01-12)
1147

1248
* bug #21257 [Profiler][Form] Fix form profiler errors profiler_dump (ogizanagi)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.3-DEV';
61+
const VERSION = '3.2.3';
6262
const VERSION_ID = 30203;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 3;
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.