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 0efa80d

Browse filesBrowse files
authored
Merge pull request #25318 from fabpot/release-2.8.32
released v2.8.32
2 parents c865b03 + 525b5ff commit 0efa80d
Copy full SHA for 0efa80d

File tree

Expand file treeCollapse file tree

2 files changed

+17
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+17
-2
lines changed

‎CHANGELOG-2.8.md

Copy file name to clipboardExpand all lines: CHANGELOG-2.8.md
+15Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.32 (2017-12-04)
11+
12+
* bug #25278 Fix for missing whitespace control modifier in form layout (kubawerlos)
13+
* bug #25236 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
14+
* bug #25258 [link] Prevent warnings when running link with 2.7 (dunglas)
15+
* bug #24750 [Validator] ExpressionValidator should use OBJECT_TO_STRING (Simperfit)
16+
* bug #25182 [HttpFoundation] AutExpireFlashBag should not clear new flashes (Simperfit, sroze)
17+
* bug #25152 [Form] Don't rely on `Symfony\Component\HttpFoundation\File\File` if http-foundation isn't in FileType (issei-m)
18+
* bug #24987 [Console] Fix global console flag when used in chain (Simperfit)
19+
* bug #25043 [Yaml] added ability for substitute aliases when mapping is on single line (Michał Strzelecki, xabbuh)
20+
* bug #25102 [Form] Fixed ContextErrorException in FileType (chihiro-adachi)
21+
* bug #25130 [DI] Fix handling of inlined definitions by ContainerBuilder (nicolas-grekas)
22+
* bug #25072 [Bridge/PhpUnit] Remove trailing "\n" from ClockMock::microtime(false) (joky)
23+
* bug #24956 Fix ambiguous pattern (weltling)
24+
1025
* 2.8.31 (2017-11-16)
1126

1227
* security #24995 Validate redirect targets using the session cookie domain (nicolas-grekas)

‎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
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.32-DEV';
62+
const VERSION = '2.8.32';
6363
const VERSION_ID = 20832;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 32;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';
7070
const END_OF_LIFE = '11/2019';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.