Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7339c93

Browse filesBrowse files
authored
Merge pull request #26361 from fabpot/release-2.8.35
released v2.8.35
2 parents 3dd843b + fbf0d0c commit 7339c93
Copy full SHA for 7339c93

File tree

2 files changed

+29
-2
lines changed
Filter options

2 files changed

+29
-2
lines changed

‎CHANGELOG-2.8.md

Copy file name to clipboardExpand all lines: CHANGELOG-2.8.md
+27Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.35 (2018-03-01)
11+
12+
* bug #26338 [Debug] Keep previous errors of Error instances (Philipp91)
13+
* bug #26312 [Routing] Don't throw 405 when scheme requirement doesn't match (nicolas-grekas)
14+
* bug #26298 Fix ArrayInput::toString() for InputArgument::IS_ARRAY args (maximium)
15+
* bug #26236 [PropertyInfo] ReflectionExtractor: give a chance to other extractors if no properties (dunglas)
16+
* bug #25557 [WebProfilerBundle] add a way to limit ajax request (Simperfit)
17+
* bug #26228 [HttpFoundation] Fix missing "throw" in JsonResponse (nicolas-grekas)
18+
* bug #26211 [Console] Suppress warning from sapi_windows_vt100_support (adawolfa)
19+
* bug #26156 Fixes #26136: Avoid emitting warning in hasParameterOption() (greg-1-anderson)
20+
* bug #26183 [DI] Add null check for removeChild (changmin.keum)
21+
* bug #26173 [Security] fix accessing request values (xabbuh)
22+
* bug #26159 created validator.tl.xlf for Form/Translations (ergiegonzaga)
23+
* bug #26100 [Routing] Throw 405 instead of 404 when redirect is not possible (nicolas-grekas)
24+
* bug #26040 [Process] Check PHP_BINDIR before $PATH in PhpExecutableFinder (nicolas-grekas)
25+
* bug #26012 Exit as late as possible (greg0ire)
26+
* bug #26111 [Security] fix merge of 2.7 into 2.8 + add test case (dmaicher)
27+
* bug #25893 [Console] Fix hasParameterOption / getParameterOption when used with multiple flags (greg-1-anderson)
28+
* bug #25940 [Form] keep the context when validating forms (xabbuh)
29+
* bug #25373 Use the PCRE_DOLLAR_ENDONLY modifier in route regexes (mpdude)
30+
* bug #26010 [CssSelector] For AND operator, the left operand should have parentheses, not only right operand (Arnaud CHASSEUX)
31+
* bug #25971 [Debug] Fix bad registration of exception handler, leading to mem leak (nicolas-grekas)
32+
* bug #25962 [Routing] Fix trailing slash redirection for non-safe verbs (nicolas-grekas)
33+
* bug #25948 [Form] Fixed empty data on expanded ChoiceType and FileType (HeahDude)
34+
* bug #25972 support sapi_windows_vt100_support for php 7.2+ (jhdxr)
35+
* bug #25744 [TwigBridge] Allow label translation to be safe (MatTheCat)
36+
1037
* 2.8.34 (2018-01-29)
1138

1239
* bug #25922 [HttpFoundation] Use the correct syntax for session gc based on Pdo driver (tanasecosminromeo)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.35-DEV';
62+
const VERSION = '2.8.35';
6363
const VERSION_ID = 20835;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 35;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';
7070
const END_OF_LIFE = '11/2019';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.