Skip to content

Release v2.8.35 #26361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG-2.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down