Skip to content

Commit

Permalink
Merge pull request #22946 from fabpot/release-2.8.21
Browse files Browse the repository at this point in the history
released v2.8.21
  • Loading branch information
fabpot committed May 29, 2017
2 parents 2c84ac2 + ecf5780 commit 17002cb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG-2.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ in 2.8 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.8.0...v2.8.1

* 2.8.21 (2017-05-29)

* bug #22847 [Console] ChoiceQuestion must have choices (ro0NL)
* bug #22900 [FrameworkBundle][Console] Fix the override of a command registered by the kernel (aaa2000)
* bug #22910 [Filesystem] improve error handling in lock() (xabbuh)
* bug #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee)
* bug #22901 Fix missing abstract key in XmlDumper (weaverryan)
* bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh)
* bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz)
* bug #22647 [VarDumper] Fix dumping of non-nested stubs (nicolas-grekas)
* bug #22584 [Security] Avoid unnecessary route lookup for empty logout path (ro0NL)
* bug #22690 [Console] Fix errors not rethrown even if not handled by console.error listeners (chalasr)
* bug #22669 [FrameworkBundle] AbstractConfigCommand: do not try registering bundles twice (ogizanagi)
* bug #22676 [FrameworkBundle] Adding the extension XML (flug)

* 2.8.20 (2017-05-01)

* bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '2.8.21-DEV';
const VERSION = '2.8.21';
const VERSION_ID = 20821;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 8;
const RELEASE_VERSION = 21;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2018';
const END_OF_LIFE = '11/2019';
Expand Down

0 comments on commit 17002cb

Please sign in to comment.