Skip to content

Commit e857cb4

Browse files
authored
Merge pull request symfony#28707 from fabpot/release-4.1.6
released v4.1.6
2 parents 7a2a4d9 + 144bc35 commit e857cb4

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-4.1.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ in 4.1 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.1.0...v4.1.1
99

10+
* 4.1.6 (2018-10-03)
11+
12+
* bug #28604 [Finder] fixed root directory access for ftp/sftp wrapper (DerDu)
13+
* bug #28688 [FWBundle] Throw if PropertyInfo is enabled, but the component isn't installed (dunglas)
14+
* bug #28638 [Console] Fix clearing sections containing questions (chalasr)
15+
* bug #28690 [FrameworkBundle] dont suggest hidden services in debug:container and debug:autow commands (nicolas-grekas)
16+
* bug #28648 [PHPUnitBridge] Fix ClockMock microtime() format (acasademont)
17+
* bug #28678 [DI] fix dumping setters before their inlined instances (nicolas-grekas)
18+
* bug #28672 [DI] fix error in dumped container (nicolas-grekas)
19+
* bug #28664 [Console] Don't return early as this bypasses the auto exit feature (duncan3dc)
20+
1021
* 4.1.5 (2018-09-30)
1122

1223
* bug #28636 [HttpFoundation] X-Accel-Mapping does not use HTTP key=value syntax (c960657)

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.1.6-DEV';
66+
const VERSION = '4.1.6';
6767
const VERSION_ID = 40106;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 6;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

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

0 commit comments

Comments
 (0)