8000 Merge pull request #29334 from fabpot/release-3.4.19 · shdev/symfony@a8ff5a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit a8ff5a5

Browse files
authored
Merge pull request symfony#29334 from fabpot/release-3.4.19
released v3.4.19
2 parents d6bbde5 + ecb0928 commit a8ff5a5

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ 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.19 (2018-11-26)
11+
12+
* bug #29318 [Console] Move back root exception to stack trace in verbose mode (chalasr)
13+
* bug #29332 [PropertyAccess] make cache keys encoding bijective (nicolas-grekas)
14+
* bug #29297 [Routing] fix trailing slash redirection when using RedirectableUrlMatcher (nicolas-grekas)
15+
* bug #29313 [PropertyAccessor] fix encoding of cache keys (nicolas-grekas)
16+
* bug #28917 [DoctrineBridge] catch errors while converting to db values in data collector (alekitto)
17+
* bug #29317 [WebProfiler] Detect non-file paths in file viewer (ro0NL)
18+
* bug #29305 [EventDispatcher] Unwrap wrapped listeners internally (ro0NL)
19+
* bug #27314 [DoctrineBridge] fix case sensitivity issue in RememberMe\DoctrineTokenProvider (PF4Public)
20+
* bug #29308 [Translation] Use XLIFF source rather than resname when there's no target (thewilkybarkid)
21+
* bug #26244 [BrowserKit] fixed BC Break for HTTP_HOST header (brizzz)
22+
* bug #28147 [DomCrawler] exclude fields inside "template" tags (Gorjunov)
23+
* bug #29222 [Dotenv] properly parse backslashes in unquoted env vars (xabbuh)
24+
* bug #29256 [HttpFoundation] Fixed absolute Request URI with default port (thomasbisignani)
25+
* bug #29274 [Routing] Remove duplicate schemes and methods for invokable controllers (claudusd)
26+
* bug #29271 [HttpFoundation] Fix trailing space for mime-type with parameters (Sascha Dens)
27+
* bug #29243 [Cache] fix optimizing Psr6Cache for AdapterInterface pools (nicolas-grekas)
28+
* bug #29247 [DI] fix taking lazy services into account when dumping the container (nicolas-grekas)
29+
* bug #29249 [Form] Fixed empty data for compound date interval (HeahDude)
30+
* bug #29265 [Bridge/PhpUnit] Use composer to download phpunit (nicolas-grekas)
31+
* bug #28769 [FrameworkBundle] deal with explicitly enabled workflow nodes (xabbuh)
32+
* bug #29223 [Validator] Added the missing constraints instance checks (thomasbisignani)
33+
* bug #28966 [PropertyAccessor] Fix unable to write to singular property using setter while plural adder/remover exist (karser)
34+
* bug #29182 [Form] Fixed empty data for compound date types (HeahDude)
35+
* bug #29185 [Form] Fixed keeping hash of equal \DateTimeInterface on submit (HeahDude)
36+
* bug #29137 [Workflow][FrameworkBundle] fixed guard event names for transitions (destillat, lyrixx)
37+
* bug #28731 [Form] invalidate forms on transformation failures (xabbuh)
38+
* bug #29152 [Config] Unset key during normalization (ro0NL)
39+
* bug #29165 [DI] align IniFileLoader to PHP bugfix #76965 (nicolas-grekas)
40+
* bug #29115 Change button_widget class to btn-primary (neFAST)
41+
* bug #29131 [Dotenv] dont use getenv() to read SYMFONY_DOTENV_VARS (nicolas-grekas)
42+
* bug #29057 [HttpFoundation] replace any preexisting Content-Type headers (nicolas-grekas)
43+
* bug #29104 [DI] fix dumping inlined services (nicolas-grekas)
44+
* bug #29054 [VarDumper] fix dump of closures created from callables (nicolas-grekas)
45+
* bug #29102 [DI] fix GraphvizDumper ignoring inline definitions (nicolas-grekas)
46+
* bug #29107 [DI] dont track classes/interfaces used to compute autowiring error messages (nicolas-grekas)
47+
1048
* 3.4.18 (2018-11-03)
1149

1250
* bug #28820 [DependencyInjection] Fix tags on multiple decorated service (Soner Sayakci)

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