8000 Merge pull request #31147 from fabpot/release-4.1.12 · symfony/symfony@482d063 · GitHub
[go: up one dir, main page]

Skip to content

Commit 482d063

Browse files
authored
Merge pull request #31147 from fabpot/release-4.1.12
released v4.1.12
2 parents 4c80c34 + 0196d2f commit 482d063

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG-4.1.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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.12 (2019-04-17)
11+
12+
* security #cve-2019-10910 [DI] Check service IDs are valid (nicolas-grekas)
13+
* security #cve-2019-10909 [FrameworkBundle][Form] Fix XSS issues in the form theme of the PHP templating engine (stof)
14+
* security #cve-2019-10912 [Cache][PHPUnit Bridge] Prevent destructors with side-effects from being unserialized (nicolas-grekas)
15+
* security #cve-2019-10911 [Security] Add a separator in the remember me cookie hash (pborreli)
16+
* security #cve-2019-10913 [HttpFoundation] reject invalid method override (nicolas-grekas)
17+
1018
* 4.1.11 (2019-01-29)
1119

1220
* bug #30013 [Routing] dont redirect routes with greedy trailing vars with no explicit slash (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

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

66-
const VERSION = '4.1.11';
67-
const VERSION_ID = 40111;
66+
const VERSION = '4.1.12';
67+
const VERSION_ID = 4.1.12;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
70-
const RELEASE_VERSION = 11;
70+
const RELEASE_VERSION = 12;
7171
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '01/2019';

0 commit comments

Comments
 (0)
0