Merge pull request #26361 from fabpot/release-2.8.35

released v2.8.35
This commit is contained in:
Fabien Potencier 2018-03-01 08:45:46 -08:00 committed by GitHub
commit 7339c93c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 2 deletions

View File

@ -7,6 +7,33 @@ in 2.8 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.8.0...v2.8.1
* 2.8.35 (2018-03-01)
* bug #26338 [Debug] Keep previous errors of Error instances (Philipp91)
* bug #26312 [Routing] Don't throw 405 when scheme requirement doesn't match (nicolas-grekas)
* bug #26298 Fix ArrayInput::toString() for InputArgument::IS_ARRAY args (maximium)
* bug #26236 [PropertyInfo] ReflectionExtractor: give a chance to other extractors if no properties (dunglas)
* bug #25557 [WebProfilerBundle] add a way to limit ajax request (Simperfit)
* bug #26228 [HttpFoundation] Fix missing "throw" in JsonResponse (nicolas-grekas)
* bug #26211 [Console] Suppress warning from sapi_windows_vt100_support (adawolfa)
* bug #26156 Fixes #26136: Avoid emitting warning in hasParameterOption() (greg-1-anderson)
* bug #26183 [DI] Add null check for removeChild (changmin.keum)
* bug #26173 [Security] fix accessing request values (xabbuh)
* bug #26159 created validator.tl.xlf for Form/Translations (ergiegonzaga)
* bug #26100 [Routing] Throw 405 instead of 404 when redirect is not possible (nicolas-grekas)
* bug #26040 [Process] Check PHP_BINDIR before $PATH in PhpExecutableFinder (nicolas-grekas)
* bug #26012 Exit as late as possible (greg0ire)
* bug #26111 [Security] fix merge of 2.7 into 2.8 + add test case (dmaicher)
* bug #25893 [Console] Fix hasParameterOption / getParameterOption when used with multiple flags (greg-1-anderson)
* bug #25940 [Form] keep the context when validating forms (xabbuh)
* bug #25373 Use the PCRE_DOLLAR_ENDONLY modifier in route regexes (mpdude)
* bug #26010 [CssSelector] For AND operator, the left operand should have parentheses, not only right operand (Arnaud CHASSEUX)
* bug #25971 [Debug] Fix bad registration of exception handler, leading to mem leak (nicolas-grekas)
* bug #25962 [Routing] Fix trailing slash redirection for non-safe verbs (nicolas-grekas)
* bug #25948 [Form] Fixed empty data on expanded ChoiceType and FileType (HeahDude)
* bug #25972 support sapi_windows_vt100_support for php 7.2+ (jhdxr)
* bug #25744 [TwigBridge] Allow label translation to be safe (MatTheCat)
* 2.8.34 (2018-01-29)
* bug #25922 [HttpFoundation] Use the correct syntax for session gc based on Pdo driver (tanasecosminromeo)

View File

@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;
const VERSION = '2.8.35-DEV';
const VERSION = '2.8.35';
const VERSION_ID = 20835;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 8;
const RELEASE_VERSION = 35;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';
const END_OF_MAINTENANCE = '11/2018';
const END_OF_LIFE = '11/2019';