Skip to content

Commit c3f89b5

Browse files
authored
Merge pull request symfony#28291 from fabpot/release-4.1.4
released v4.1.4
2 parents d6772c3 + f1f6062 commit c3f89b5

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG-4.1.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ in 4.1 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/v4.1.0...v4.1.1
99

10+
* 4.1.4 (2018-08-28)
11+
12+
* bug #28278 [HttpFoundation] Fix unprepared BinaryFileResponse sends empty file (wackymole)
13+
* bug #28284 [PhpUnitBridge] keep compat with composer 1.0 (nicolas-grekas)
14+
* bug #28251 [HttpFoundation] Allow RedisCluster class for RedisSessionHandler (michaelperrin)
15+
* bug #28241 [HttpKernel] fix forwarding trusted headers as server parameters (nicolas-grekas)
16+
* bug #28220 [PropertyAccess] fix type error handling when writing values (xabbuh)
17+
* bug #28249 [Cache] enable Memcached::OPT_TCP_NODELAY to fix perf of misses (nicolas-grekas)
18+
* bug #28252 [DoctrineBridge] support __toString as documented for UniqueEntityValidator (dmaicher)
19+
* bug #28216 [FrameworkBundle] `message_bus` alias public (sroze)
20+
* bug #28113 [Form] Add help texts for checkboxes in horizontal bootstrap 4 forms (apfelbox)
21+
* bug #28100 [Security] Call AccessListener after LogoutListener (chalasr)
22+
* bug #28174 Remove the HTML5 validation from the profiler URL search form (Soullivaneuh)
23+
* bug #28159 [DI] Fix autowire inner service (hason)
24+
* bug #28060 [DI] Fix false-positive circular ref leading to wrong exceptions or infinite loops at runtime (nicolas-grekas)
25+
* bug #28144 [HttpFoundation] fix false-positive ConflictingHeadersException (nicolas-grekas)
26+
* bug #28152 [Translation] fix perf of lint:xliff command (nicolas-grekas)
27+
* bug #28115 [Form] Remove extra .form-group wrapper around file widget in bootstrap 4 (MrMitch)
28+
* bug #28120 [Routing] Fixed scheme redirecting for root path (twoleds)
29+
* bug #28112 Fix CSS property typo (AhmedAbdulrahman)
30+
* bug #28012 [PropertyInfo] Allow nested collections (jderusse)
31+
* bug #28055 [PropertyInfo] Allow nested collections (jderusse)
32+
* bug #28083 Remove the Expires header when calling Response::expire() (javiereguiluz)
33+
1034
* 4.1.3 (2018-08-01)
1135

1236
* security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

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

66-
const VERSION = '4.1.4-DEV';
66+
const VERSION = '4.1.4';
6767
const VERSION_ID = 40104;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 4;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '01/2019';
7474
const END_OF_LIFE = '07/2019';

0 commit comments

Comments
 (0)