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 074ae55

Browse filesBrowse files
authored
Merge pull request #24451 from fabpot/release-2.8.28
released v2.8.28
2 parents c4282be + ebf0c07 commit 074ae55
Copy full SHA for 074ae55

File tree

Expand file treeCollapse file tree

2 files changed

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

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.28 (2017-10-05)
11+
12+
* bug #24448 [Session] fix MongoDb session handler to gc all expired sessions (Tobion)
13+
* bug #24417 [Yaml] parse references on merge keys (xabbuh)
14+
* bug #24421 [Config] Fix dumped files invalidation by OPCache (nicolas-grekas)
15+
* bug #23980 Tests and fix for issue in array model data in EntityType field with multiple=true (stoccc)
16+
* bug #22586 [Form] Fixed PercentToLocalizedStringTransformer to accept both comma and dot as decimal separator, if possible (aaa2000)
17+
* bug #24157 [Intl] Fixed support of Locale::getFallback (lyrixx)
18+
* bug #24198 [HttpFoundation] Fix file upload multiple with no files (enumag)
19+
* bug #24036 [Form] Fix precision of MoneyToLocalizedStringTransformer's divisions and multiplications (Rubinum)
20+
* bug #24367 PdoSessionHandler: fix advisory lock for pgsql (Tobion)
21+
* bug #24243 HttpCache does not consider ESI resources in HEAD requests (mpdude)
22+
* bug #24304 [FrameworkBundle] Fix Routing\DelegatingLoader (nicolas-grekas)
23+
* bug #24219 [Console] Preserving line breaks between sentences according to the exception message (yceruto)
24+
* bug #23722 [Form] Fixed GroupSequence with "constraints" option (HeahDude)
25+
* bug #22321 [Filesystem] Fixed makePathRelative (ausi)
26+
* bug #23473 [Filesystem] mirror - fix copying content with same name as source/target. (gitlost)
27+
* bug #24162 [WebProfilerBundle] fixed TemplateManager when using Twig 2 without compat interfaces (fabpot)
28+
* bug #24141 [DomCrawler] Fix conversion to int on GetPhpFiles (MaraBlaga)
29+
* bug #23853 Filtering empty uuids in ORMQueryBuilderLoader. (mlazovla)
30+
* bug #24101 [Security] Fix exception when use_referer option is true and referer is not set or empty (linniksa)
31+
* bug #24105 [Filesystem] check permissions if dump target dir is missing (xabbuh)
32+
* bug #24115 [FrameworkBundle] Get KERNEL_DIR through $_ENV too for KernelTestCase (yceruto)
33+
* bug #24041 [ExpressionLanguage] throws an exception on calling uncallable method (fmata)
34+
* bug #24096 Fix ArrayInput::toString() for VALUE_IS_ARRAY options/args (chalasr)
35+
* bug #23730 Fixed the escaping of back slashes and << in console output (javiereguiluz)
36+
1037
* 2.8.27 (2017-08-28)
1138

1239
* bug #23989 [Debug] Remove false-positive check in DebugClassLoader (nicolas-grekas)

‎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.28-DEV';
62+
const VERSION = '2.8.28';
6363
const VERSION_ID = 20828;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 28;
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.