Skip to content

Commit 1b89e7b

Browse files
authored
Merge pull request symfony#31146 from fabpot/release-3.4.26
released v3.4.26
2 parents 82f003e + ef3b684 commit 1b89e7b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-3.4.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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.26 (2019-04-17)
11+
12+
* bug #31084 [HttpFoundation] Make MimeTypeExtensionGuesser case insensitive (vermeirentony)
13+
* bug #31142 Revert "bug #30423 [Security] Rework firewall's access denied rule (dimabory)" (chalasr)
14+
* security #cve-2019-10910 [DI] Check service IDs are valid (nicolas-grekas)
15+
* security #cve-2019-10909 [FrameworkBundle][Form] Fix XSS issues in the form theme of the PHP templating engine (stof)
16+
* security #cve-2019-10912 [Cache][PHPUnit Bridge] Prevent destructors with side-effects from being unserialized (nicolas-grekas)
17+
* security #cve-2019-10911 [Security] Add a separator in the remember me cookie hash (pborreli)
18+
* security #cve-2019-10913 [HttpFoundation] reject invalid method override (nicolas-grekas)
19+
1020
* 3.4.25 (2019-04-16)
1121

1222
* bug #29944 [DI] Overriding services autowired by name under _defaults bind not working (przemyslaw-bogusz, renanbr)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.26-DEV';
70+
const VERSION = '3.4.26';
7171
const VERSION_ID = 30426;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 26;
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)