Skip to content

Commit 5304a36

Browse files
authored
Merge pull request #26844 from fabpot/release-3.4.8
released v3.4.8
2 parents ee054cd + 884b994 commit 5304a36

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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.8 (2018-04-06)
11+
12+
* bug #26802 [Security] register custom providers on ExpressionLanguage directly (dmaicher)
13+
* bug #26794 [PhpUnitBridge] Catch deprecation error handler (cvilleger)
14+
* bug #26788 [Security] Load the user before pre/post auth checks when needed (chalasr)
15+
* bug #26792 [Routing] Fix throwing NoConfigurationException instead of 405 (nicolas-grekas)
16+
* bug #26774 [SecurityBundle] Add missing argument to security.authentication.provider.simple (i3or1s, chalasr)
17+
* bug #26763 [Finder] Remove duplicate slashes in filenames (helhum)
18+
* bug #26758 [WebProfilerBundle][HttpKernel] Make FileLinkFormatter URL format generation lazy (nicolas-grekas)
19+
1020
* 3.4.7 (2018-04-03)
1121

1222
* bug #26387 [Yaml] Fix regression when trying to parse multiline (antograssiot)

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