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 5615b92

Browse filesBrowse files
committed
Merge pull request #16763 from fabpot/release-2.8.0
released v2.8.0
2 parents 6df8bad + a62dbb8 commit 5615b92
Copy full SHA for 5615b92

File tree

Expand file treeCollapse file tree

2 files changed

+53
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+53
-2
lines changed

‎CHANGELOG-2.8.md

Copy file name to clipboardExpand all lines: CHANGELOG-2.8.md
+51Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,57 @@ 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.0 (2015-11-30)
11+
12+
* bug #16758 Fix BC for the default root form name (stof)
13+
* bug #16753 [Process] Fix signaling/stopping logic on Windows (nicolas-grekas)
14+
* feature #16755 [Security] add subject variable to expression context (xabbuh)
15+
* bug #16642 [DI][autowiring] throw exception when many services use the same class. (aitboudad)
16+
* bug #16745 [Yaml] look for colon in parsed inline string (xabbuh)
17+
* bug #16733 [Console] do not encode backslashes in console default description (Tobion)
18+
* feature #16735 [WIP] [Ldap] Marked the Ldap component as internal (csarrazi)
19+
* bug #16734 Make sure security.role_hierarchy.roles always exists (WouterJ)
20+
* feature #16722 [Security][SecurityBundle] Use csrf_token_id instead of deprecated intention (jakzal)
21+
* bug #16312 [HttpKernel] clearstatcache() so the Cache sees when a .lck file has been released (mpdude)
22+
* bug #16351 [WIP] [Form] [TwigBridge] Bootstrap horizontal theme missing tests (pieter2627)
23+
* bug #16685 [Form] Fixed: Duplicate choice labels are remembered when using "choices_as_values" = false (webmozart)
24+
* feature #16709 [Bridge\PhpUnit] Display the stack trace of a deprecation on-demand (nicolas-grekas)
25+
* bug #16704 [Form+SecurityBundle] Trigger deprecation for csrf_provider+intention options (nicolas-grekas)
26+
* feature #16706 [HttpFoundation] Deprecate $deep parameter on ParameterBag (nicolas-grekas)
27+
* bug #16705 [Form] Deprecated setting "choices_as_values" to "false" (webmozart)
28+
* feature #16690 [Form] Deprecated ArrayKeyChoiceList (webmozart)
29+
* feature #16687 [Form] Deprecated TimezoneType::getTimezones() (webmozart)
30+
* bug #16681 [Form] Deprecated setting "choices_as_values" to "false" (webmozart)
31+
* bug #16695 [SecurityBundle] disable the init:acl command if ACL is not used (Tobion)
32+
* bug #16677 [Form] Fixed wrong usages of the "text" type (webmozart)
33+
* bug #16679 [Form] Disabled view data validation if "data_class" is set to null (webmozart)
34+
* bug #16621 [Console] Fix bug with $output overloading (WouterJ)
35+
* feature #16601 [Security] Deprecate "AbstractVoter" in favor of "Voter" (nicolas-grekas, lyrixx)
36+
* bug #16676 [HttpFoundation] Workaround HHVM rewriting HTTP response line (nicolas-grekas)
37+
* bug #16668 [ClassLoader] Fix parsing namespace when token_get_all() is missing (nicolas-grekas)
38+
* bug #16386 Bug #16343 [Router] Too many Routes ? (jelte)
39+
* bug #16498 fix unused variable warning (eventhorizonpl)
40+
* feature #16031 [Translation][Form] Do not translate form labels and placeholders when 'translation_domain' is false (Restless-ET)
41+
* bug #16651 [Debug] Ensure class declarations are loaded only once (nicolas-grekas)
42+
* security #16631 CVE-2015-8124: Session Fixation in the "Remember Me" Login Feature (xabbuh)
43+
* security #16630 CVE-2015-8125: Potential Remote Timing Attack Vulnerability in Security Remember-Me Service (xabbuh)
44+
* bug #16633 [Filesystem] Fixed failing test due to tempdir symlink (toretto460)
45+
* bug #16609 [HttpKernel] Don't reset on shutdown but in FrameworkBundle/Test/KernelTestCase (nicolas-grekas)
46+
* bug #16477 [Routing] Changing RouteCollectionBuilder::import() behavior to add to the builder (weaverryan)
47+
* bug #16588 Sent out a status text for unknown HTTP headers. (dawehner)
48+
* bug #16295 [DependencyInjection] Unescape parameters for all types of injection (Nicofuma)
49+
* bug #16377 [WebProfilerBundle] Fix minitoolbar height (rvanlaak)
50+
* bug #16585 Add support for HTTP status code 418 back (dawehner)
51+
* bug #16574 [Process] Fix PhpProcess with phpdbg runtime (nicolas-grekas)
52+
* bug #16581 Fix call to undefined function json_last_error_message (dawehner)
53+
* bug #16573 [FrameworkBundle] Fix PropertyInfo extractor namespace in framework bundle (jvasseur)
54+
* bug #16578 [Console] Fix bug in windows detection (kbond)
55+
* bug #16546 [Serializer] ObjectNormalizer: don't serialize static methods and props (dunglas)
56+
* bug #16352 Fix the server variables in the router_*.php files (leofeyer)
57+
* bug #16537 [Validator] Allow an empty path with a non empty fragment or a query (jakzal)
58+
* bug #16528 [Translation] Add support for Armenian pluralization. (marcosdsanchez)
59+
* bug #16510 [Process] fix Proccess run with pts enabled (ewgRa)
60+
1061
* 2.8.0-BETA1 (2015-11-16)
1162

1263
* feature #16156 [Filesystem] Changed dumpFile to allow dumping to streams (markchalloner, pierredup)

‎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.0-DEV';
62+
const VERSION = '2.8.0';
6363
const VERSION_ID = 20800;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 0;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

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

0 commit comments

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