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

Skip to content

Commit 8b70924

Browse files
authored
Merge pull request #26418 from fabpot/release-4.0.6
released v4.0.6
2 parents fa8455a + 33b0481 commit 8b70924

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG-4.0.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ in 4.0 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/v4.0.0...v4.0.1
99

10+
* 4.0.6 (2018-03-05)
11+
12+
* bug #26393 [DI] Skip resource tracking if disabled (chalasr)
13+
* bug #26403 fix the handling of timestamp in the MongoDBSessionHandler (hjanuschka)
14+
* bug #26355 [DI] Fix missing "id" normalization when dumping the container (nicolas-grekas)
15+
* bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal)
16+
* bug #26369 Use fill instead of style for svg colors (rpkamp)
17+
* bug #26358 [FrameworkBundle] Silence "Failed to remove directory" on cache:clear (nicolas-grekas)
18+
1019
* 4.0.5 (2018-03-01)
1120

1221
* bug #26327 [Form][WCAG] Errors sign for people that do not see colors (Nyholm)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.0.6-DEV';
66+
const VERSION = '4.0.6';
6767
const VERSION_ID = 40006;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 6;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '07/2018';
7474
const END_OF_LIFE = '01/2019';

0 commit comments

Comments
 (0)