Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3355310

Browse files
authored
Merge pull request #23735 from fabpot/release-2.8.26
released v2.8.26
2 parents 359e2d9 + d2e8f38 commit 3355310

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.26 (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 #23662 [VarDumper] Adapt to php 7.2 changes (nicolas-grekas)
15+
* bug #23649 [Form][TwigBridge] Don't render _method in form_rest() for a child form (fmarchalemisys)
16+
* bug #23023 [DoctrineBridge][PropertyInfo] Added support for Doctrine Embeddables (vudaltsov)
17+
* bug #23619 [Validator] Fix IbanValidator for ukrainian IBANs (paroe)
18+
* bug #23238 [Security] ensure the 'route' index is set before attempting to use it (gsdevme)
19+
* bug #23330 [WebProfilerBundle] Fix full sized dump hovering in toolbar (ogizanagi)
20+
* bug #23580 Fix login redirect when referer contains a query string (fabpot)
21+
* bug #23574 [VarDumper] Move locale sniffing to dump() time (nicolas-grekas)
22+
1023
* 2.8.25 (2017-07-17)
1124

1225
* security #23507 [Security] validate empty passwords again (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.26-DEV';
62+
const VERSION = '2.8.26';
6363
const VERSION_ID = 20826;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 26;
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)