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

Skip to content

Commit 2adc85d

Browse files
authored
Merge pull request #34350 from fabpot/release-3.4.35
released v3.4.35
2 parents 32bde39 + 02257c8 commit 2adc85d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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.35 (2019-11-13)
11+
12+
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)
13+
* security #cve-2019-18889 [Cache] forbid serializing AbstractAdapter and TagAwareAdapter instances (nicolas-grekas)
14+
* security #cve-2019-18888 [HttpFoundation] fix guessing mime-types of files with leading dash (nicolas-grekas)
15+
* security #cve-2019-18887 [HttpKernel] Use constant time comparison in UriSigner (stof)
16+
1017
* 3.4.34 (2019-11-11)
1118

1219
* bug #34297 [DI] fix locators with numeric keys (nicolas-grekas)

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