Skip to content

Commit de239d2

Browse files
authored
Merge pull request symfony#28705 from fabpot/release-3.4.17
released v3.4.17
2 parents ef2f66b + bf23505 commit de239d2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG-3.4.md

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

10+
* 3.4.17 (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 #28648 [PHPUnitBridge] Fix ClockMock microtime() format (acasademont)
15+
* bug #28678 [DI] fix dumping setters before their inlined instances (nicolas-grekas)
16+
* bug #28672 [DI] fix error in dumped container (nicolas-grekas)
17+
* bug #28664 [Console] Don't return early as this bypasses the auto exit feature (duncan3dc)
18+
1019
* 3.4.16 (2018-09-30)
1120

1221
* bug #28376 [TwigBundle] Fixed caching of templates in src/Resources/<BundleName>/views on cache warmup (yceruto)

src/Symfony/Component/HttpKernel/Kernel.php

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

70-
const VERSION = '3.4.17-DEV';
70+
const VERSION = '3.4.17';
7171
const VERSION_ID = 30417;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 17;
75-
const EXTRA_VERSION = 'DEV';
75+
const EXTRA_VERSION = '';
7676

7777
const END_OF_MAINTENANCE = '11/2020';
7878
const END_OF_LIFE = '11/2021';

0 commit comments

Comments
 (0)