8000 Merge pull request #21543 from fabpot/release-2.8.17 · symfony/symfony@c423a13 · GitHub
[go: up one dir, main page]

Skip to content

Commit c423a13

Browse files
authored
Merge pull request #21543 from fabpot/release-2.8.17
released v2.8.17
2 parents 9650b50 + 4ddbaec commit c423a13

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ 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.17 (2017-02-06)
11+
12+
* bug #20844 [Config] Fix checking cache for non existing meta file (hason)
13+
* bug #21063 [Form] Fixed DateType format option for single text widget (HeahDude)
14+
* bug #21430 Casting TableCell value to string. (jaydiablo)
15+
* bug #21359 [FrameworkBundle] fixed custom domain for translations in php templates (robinlehrmann)
16+
* bug #21485 [Process] Non ASCII characters disappearing during the escapeshellarg (GuillaumeVerdon)
17+
* bug #21370 [FrameworkBundle] Execute the PhpDocExtractor earlier (GuilhemN)
18+
* bug #21462 [BrowserKit] ignore invalid cookies expires date format (xabbuh)
19+
* bug #21438 [Console] Fix TableCell issues with decoration (ogizanagi)
20+
* bug #21431 [DoctrineBridge] always check for all fields to be mapped (xabbuh)
21+
* bug #21360 [PropertyAccess] Handle interfaces in the invalid argument exception (fancyweb)
22+
* bug #21403 [DI] Fix defaults overriding empty strings in AutowirePass (nicolas-grekas)
23+
* bug #21401 [Debug] Workaround "null" $context (nicolas-grekas)
24+
* bug #21333 [HttpKernel] Fix ArgumentValueResolver for arguments default null (chalasr)
25+
* bug #20871 [HttpKernel] Give higher priority to adding request formats (akeeman)
26+
* bug #21332 [PropertyInfo] Don't try to access a property thru a static method (dunglas)
27+
* bug #21331 [PropertyInfo] Exclude static methods form properties guessing (dunglas)
28+
* bug #21285 [TwigBundle] do not lose already set method calls (xabbuh)
29+
* bug #21279 #20411 fix Yaml parsing for very long quoted strings (RichardBradley)
30+
1031
* 2.8.16 (2017-01-12)
1132

1233
* bug #21218 [Form] DateTimeToLocalizedStringTransformer does not use timezone when using date only (magnetik)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.17-DEV';
62+
const VERSION = '2.8.17';
6363
const VERSION_ID = 20817;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 17;
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