8000 Merge pull request #29070 from fabpot/release-3.4.18 · symfony/symfony@ee054aa · GitHub
[go: up one dir, main page]

Skip to content

Commit ee054aa

Browse files
authored
Merge pull request #29070 from fabpot/release-3.4.18
released v3.4.18
2 parents 5d11205 + b22cad3 commit ee054aa

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ 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.18 (2018-11-03)
11+
12+
* bug #28820 [DependencyInjection] Fix tags on multiple decorated service (Soner Sayakci)
13+
* bug #29020 Fix ini_get() for boolean values (deguif)
14+
* feature #28893 [TwigBundle] Fix usage of TwigBundle without FrameworkBundle (tgalopin)
15+
* bug #28861 [DependencyInjection] Skip empty proxy code (olvlvl)
16+
* bug #28801 Convert InsufficientAuthenticationException to HttpException with 401 status code (vincentchalamon)
17+
* bug #28840 add missing double-quotes to extra_fields output message (danielkay)
18+
* bug #28712 [Form] reverse transform RFC 3339 formatted dates (xabbuh)
19+
* bug #28813 Fix for race condition in console output stream write (rudolfratusinski)
20+
* bug #27772 [Console] Fixes multiselect choice question defaults in non-interactive mode (veewee)
21+
* bug #28835 [FrameworkBundle] Setting missing default paths under BC layer (yceruto)
22+
* bug #28760 [DI] fix dumping inline services again (nicolas-grekas)
23+
* bug #28689 [Process] fix locking of pipe files on Windows (nicolas-grekas)
24+
* bug #28704 [Form] fix multi-digit seconds fraction handling (xabbuh)
25+
* bug #28793 [SecurityBundle] do not override custom access decision configs (xabbuh)
26+
* bug #28783 [FrameworkBundle] add missing cache prefix seed attribute to XSD (xabbuh)
27+
* bug #28072 [Security] Do not deauthenticate user when the first refreshed user has changed (gpekz)
28+
* bug #28735 [FWBundle] Automatically enable PropertyInfo when using Flex (dunglas)
29+
1030
* 3.4.17 (2018-10-03)
1131

1232
* bug #28604 [Finder] fixed root directory access for ftp/sftp wrapper (DerDu)

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.18-DEV';
70+
const VERSION = '3.4.18';
7171
const VERSION_ID = 30418;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 18;
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)
0