8000 Merge pull request #27102 from fabpot/release-3.4.9 · symfony/symfony@4babd75 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4babd75

Browse files
authored
Merge pull request #27102 from fabpot/release-3.4.9
released v3.4.9
2 parents f244942 + c7d277e commit 4babd75

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,42 @@ 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.9 (2018-04-30)
11+
12+
* feature #24896 Add CODE_OF_CONDUCT.md (egircys)
13+
* bug #27074 [Debug][WebProfilerBundle] F 10000 ix setting file link format (lyrixx, nicolas-grekas)
14+
* bug #27088 ResolveBindingsPass: Don't throw error for unused service, missing parent class (weaverryan)
15+
* bug #27086 [PHPUnitBridge] Add an implementation just for php 7.0 (greg0ire)
16+
* bug #26138 [HttpKernel] Catch HttpExceptions when templating is not installed (cilefen)
17+
* bug #27007 [Cache] TagAwareAdapterInterface::invalidateTags() should commit deferred items (nicolas-grekas)
18+
* bug #27067 [HttpFoundation] Fix setting session-related ini settings (e-moe)
19+
* bug #27061 [HttpKernel] Don't clean legacy containers that are still loaded (nicolas-grekas)
20+
* bug #27064 [VarDumper] Fix HtmlDumper classes match (ogizanagi)
21+
* bug #27016 [Security][Guard] GuardAuthenticationProvider::authenticate cannot return null (biomedia-thomas)
22+
* bug #26831 [Bridge/Doctrine] count(): Parameter must be an array or an object that implements Countable (gpenverne)
23+
* bug #27044 [Security] Skip user checks if not implementing UserInterface (chalasr)
24+
* bug #27025 [DI] Add check of internal type to ContainerBuilder::getReflectionClass (upyx)
25+
* bug #26994 [PhpUnitBridge] Add type hints (greg0ire)
26+
* bug #26014 [Security] Fixed being logged out on failed attempt in guard (iltar)
27+
* bug #25348 [HttpFoundation] Send cookies using header() to fix "SameSite" ones (nicolas-grekas, cvilleger)
28+
* bug #26910 Use new PHP7.2 functions in hasColorSupport (johnstevenson)
29+
* bug #26999 [VarDumper] Fix dumping of SplObjectStorage (corphi)
30+
* bug #25841 [DoctrineBridge] Fix bug when indexBy is meta key in PropertyInfo\DoctrineExtractor (insekticid)
31+
* bug #26983 [TwigBridge] [Bootstrap 4] Fix PercentType error rendering. (alexismarquis)
32+
* bug #26980 [TwigBundle] fix formatting arguments in plaintext format (xabbuh)
33+
* bug #26886 Don't assume that file binary exists on *nix OS (teohhanhui)
34+
* bug #26959 [Console] Fix PSR exception context key (scaytrase)
35+
* bug #26899 [Routing] Fix loading multiple class annotations for invokable classes (1ed)
36+
* bug #26643 Fix that ESI/SSI processing can turn a "private" response "public" (mpdude)
37+
* bug #26932 [Form] Fixed trimming choice values (HeahDude)
38+
* bug #26922 [TwigBundle] fix rendering exception stack traces (xabbuh)
39+
* bug #26773 [HttpKernel] Make ServiceValueResolver work if controller namespace starts with a backslash in routing (mathieutu)
40+
* bug #26870 Add d-block to bootstrap 4 alerts (Normunds)
41+
* bug #26857 [HttpKernel] Dont create mock cookie for new sessions in tests (nicolas-grekas)
42+
* bug #26875 [Console] Don't go past exact matches when autocompleting (nicolas-grekas)
43+
* bug #26823 [Validator] Fix LazyLoadingMetadataFactory with PSR6Cache for non classname if tested values isn't existing class (Pascal Montoya, pmontoya)
44+
* bug #26834 [Yaml] Throw parse error on unfinished inline map (nicolas-grekas)
45+
1046
* 3.4.8 (2018-04-06)
1147

1248
* bug #26802 [Security] register custom providers on ExpressionLanguage directly (dmaicher)

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.9-DEV';
70+
const VERSION = '3.4.9';
7171
const VERSION_ID = 30409;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 9;
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