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 17002cb

Browse filesBrowse files
authored
Merge pull request #22946 from fabpot/release-2.8.21
released v2.8.21
2 parents 2c84ac2 + ecf5780 commit 17002cb
Copy full SHA for 17002cb

File tree

2 files changed

+17
-2
lines changed
Filter options

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.21 (2017-05-29)
11+
12+
* bug #22847 [Console] ChoiceQuestion must have choices (ro0NL)
13+
* bug #22900 [FrameworkBundle][Console] Fix the override of a command registered by the kernel (aaa2000)
14+
* bug #22910 [Filesystem] improve error handling in lock() (xabbuh)
15+
* bug #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee)
16+
* bug #22901 Fix missing abstract key in XmlDumper (weaverryan)
17+
* bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh)
18+
* bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz)
19+
* bug #22647 [VarDumper] Fix dumping of non-nested stubs (nicolas-grekas)
20+
* bug #22584 [Security] Avoid unnecessary route lookup for empty logout path (ro0NL)
21+
* bug #22690 [Console] Fix errors not rethrown even if not handled by console.error listeners (chalasr)
22+
* bug #22669 [FrameworkBundle] AbstractConfigCommand: do not try registering bundles twice (ogizanagi)
23+
* bug #22676 [FrameworkBundle] Adding the extension XML (flug)
24+
1025
* 2.8.20 (2017-05-01)
1126

1227
* bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid)

‎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.21-DEV';
62+
const VERSION = '2.8.21';
6363
const VERSION_ID = 20821;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 21;
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.