Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 75be8b7

Browse files
authored
Merge pull request #28104 from fabpot/release-4.1.3
released v4.1.3
2 parents 96504fb + d8da36c commit 75be8b7

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG-4.1.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ 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.3 (2018-08-01)
11+
12+
* security #cve-2018-14774 [HttpKernel] fix trusted headers management in HttpCache and InlineFragmentRenderer (nicolas-grekas)
13+
* security #cve-2018-14773 [HttpFoundation] Remove support for legacy and risky HTTP headers (nicolas-grekas)
14+
* bug #28003 [HttpKernel] Fixes invalid REMOTE_ADDR in inline subrequest when configuring trusted proxy with subnet (netiul)
15+
* bug #28007 [FrameworkBundle] fixed guard event names for transitions (destillat)
16+
* bug #28045 [HttpFoundation] Fix Cookie::isCleared (ro0NL)
17+
* bug #28080 [HttpFoundation] fixed using _method parameter with invalid type (Phobetor)
18+
* bug #28059 [Messenger] Fix error message on undefined message class for non-subscriber handler (chalasr)
19+
* bug #28052 [HttpKernel] Fix merging bindings for controllers' locators (nicolas-grekas)
20+
* bug #28014 [Messenger] Fix chaining senders with their aliases (sroze)
21+
1022
* 4.1.2 (2018-07-23)
1123

1224
* bug #28005 [HttpKernel] Fixed templateExists on parse error of the template name (yceruto)

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.3-DEV';
66+
const VERSION = '4.1.3';
6767
const VERSION_ID = 40103;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 3;
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)