8000 Merge pull request #23736 from fabpot/release-3.2.13 · symfony/symfony@e1aabd6 · GitHub
[go: up one dir, main page]

Skip to content

Commit e1aabd6

Browse files
authored
Merge pull request #23736 from fabpot/release-3.2.13
released v3.2.13
2 parents 8c8958e + 7ce788b commit e1aabd6

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ 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.13 (2017-08-01)
11+
12+
* bug #22244 [Console] Fix passing options with defaultCommand (Jakub Sacha)
13+
* bug #23684 [Debug] Missing escape in debug output (c960657)
14+
* bug #23654 [DI] Fix using private services in expressions (nicolas-grekas)
15+
* bug #23662 [VarDumper] Adapt to php 7.2 changes (nicolas-grekas)
16+
* bug #23649 [Form][TwigBridge] Don't render _method in form_rest() for a child form (fmarchalemisys)
17+
* bug #23023 [DoctrineBridge][PropertyInfo] Added support for Doctrine Embeddables (vudaltsov)
18+
* bug #23619 [Validator] Fix IbanValidator for ukrainian IBANs (paroe)
19+
* bug #23586 Fix case sensitive sameSite cookie (mikefrancis)
20+
* bug #23238 [Security] ensure the 'route' index is set before attempting to use it (gsdevme)
21+
* bug #23330 [WebProfilerBundle] Fix full sized dump hovering in toolbar (ogizanagi)
22+
* bug #23580 Fix login redirect when referer contains a query string (fabpot)
23+
* bug #23558 [FrameworkBundle] fix ValidatorCacheWarmer: use serializing ArrayAdapter (dmaicher)
24+
* bug #23574 [VarDumper] Move locale sniffing to dump() time (nicolas-grekas)
25+
1026
* 3.2.12 (2017-07-17)
1127

1228
* bug #23549 [PropertyInfo] conflict for phpdocumentor/reflection-docblock 3.2 (xabbuh)

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.13-DEV';
61+
const VERSION = '3.2.13';
6262
const VERSION_ID = 30213;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 13;
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