8000 Merge pull request #23554 from fabpot/release-3.2.12 · suga/symfony@d65d8fa · GitHub
[go: up one dir, main page]

Skip to content

Commit d65d8fa

Browse files
authored
Merge pull request symfony#23554 from fabpot/release-3.2.12
released v3.2.12
2 parents 0944647 + 579203a commit d65d8fa

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.12 (2017-07-17)
11+
12+
* bug #23549 [PropertyInfo] conflict for phpdocumentor/reflection-docblock 3.2 (xabbuh)
13+
* security #23507 [Security] validate empty passwords again (xabbuh)
14+
* bug #23526 [HttpFoundation] Set meta refresh time to 0 in RedirectResponse content (jnvsor)
15+
* bug #23540 Disable inlining deprecated services (alekitto)
16+
* bug #23468 [DI] Handle root namespace in service definitions (ro0NL)
17+
* bug #23256 [Security] Fix authentication.failure event not dispatched on AccountStatusException (chalasr)
18+
* bug #23461 Use rawurlencode() to transform the Cookie into a string (javiereguiluz)
19+
* bug #23459 [TwigBundle] allow to configure custom formats in XML configs (xabbuh)
20+
* bug #23460 Don't display the Symfony debug toolbar when printing the page (javiereguiluz)
21+
* bug #23469 [FrameworkBundle] do not wire namespaces for the ArrayAdapter (xabbuh)
22+
* bug #23417 [DI][Security] Prevent unwanted deprecation notices when using Expression Languages (dunglas)
23+
* bug #23261 Fixed absolute url generation for query strings and hash urls (alexander-schranz)
24+
* bug #23398 [Filesystem] Dont copy perms when origin is remote (nicolas-grekas)
25+
1026
* 3.2.11 (2017-07-05)
1127

1228
* bug #23390 [Cache] Handle APCu failures gracefully (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.12-DEV';
61+
const VERSION = '3.2.12';
6262
const VERSION_ID = 30212;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 12;
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