8000 Merge pull request #21259 from fabpot/release-2.8.16 · symfony/symfony@9fef72a · GitHub
[go: up one dir, main page]

Skip to content

Commit 9fef72a

Browse files
authored
Merge pull request #21259 from fabpot/release-2.8.16
released v2.8.16
2 parents 658a8a0 + 953c219 commit 9fef72a

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ 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.16 (2017-01-12)
11+
12+
* bug #21218 [Form] DateTimeToLocalizedStringTransformer does not use timezone when using date only (magnetik)
13+
* bug #21104 [FrameworkBundle] fix IPv6 address handling in server commands (xabbuh)
14+
* bug #20793 [Validator] Fix caching of constraints derived from non-serializable parents (uwej711)
15+
* bug #19586 [TwigBundle] Fix bug where namespaced paths don't take parent bundles in account (wesleylancel)
16+
* bug #21237 [FrameworkBundle] Fix relative paths used as cache keys (nicolas-grekas)
17+
* bug #21183 [Validator] respect groups when merging constraints (xabbuh)
18+
* bug #21179 [TwigBundle] Fixing regression in TwigEngine exception handling (Bertalan Attila)
19+
* bug #21220 [DI] Fix missing new line after private alias (ogizanagi)
20+
* bug #21211 Classloader tmpname (lyrixx)
21+
* bug #21205 [TwigBundle] fixed usage when Templating is not installed (fabpot)
22+
* bug #21155 [Validator] Check cascasdedGroups for being countable (scaytrase)
23+
* bug #21200 [Filesystem] Check that directory is writable after created it in dumpFile() (chalasr)
24+
* bug #21113 [FrameworkBundle][HttpKernel] Fix resources loading for bundles with custom structure (chalasr)
25+
* bug #21084 [Yaml] handle empty lines inside unindented collection (xabbuh)
26+
* bug #20925 [HttpFoundation] Validate/cast cookie expire time (ro0NL)
27+
* bug #21032 [SecurityBundle] Made collection of user provider unique when injecting them to the RemberMeService (lyrixx)
28+
* bug #21078 [Console] Escape default value when dumping help (lyrixx)
29+
* bug #21076 [Console] OS X Can't call cli_set_process_title php without superuser (ogizanagi)
30+
* bug #20900 [Console] Descriptors should use Helper::strlen (ogizanagi)
31+
* bug #21064 [Debug] Wrap call to ->log in a try catch block (lyrixx)
32+
* bug #21010 [Debug] UndefinedMethodFatalErrorHandler - Handle anonymous classes (SpacePossum)
33+
* bug #20859 Avoid warning in PHP 7.2 because of non-countable data (wouterj)
34+
* bug #21053 [Validator] override property constraints in child class (xabbuh)
35+
* bug #21034 [FrameworkBundle] Make TemplateController working without the Templating component (dunglas)
36+
* bug #20970 [Console] Fix question formatting using SymfonyStyle::ask() (chalasr, ogizanagi)
37+
* bug #20975 [Form] fix group sequence based validation (xabbuh)
38+
* bug #20599 [WebProfilerBundle] Display multiple HTTP headers in WDT (ro0NL)
39+
* bug #20799 [TwigBundle] do not try to register incomplete definitions (xabbuh)
40+
* bug #20961 [Validator] phpize default option values (xabbuh)
41+
* bug #20934 [FrameworkBundle] Fix PHP form templates on translatable attributes (ro0NL)
42+
* bug #20957 [FrameworkBundle] test for the Validator component to be present (xabbuh)
43+
* bug #20936 [DependencyInjection] Fix on-invalid attribute type in xsd (ogizanagi)
44+
* bug #20931 [VarDumper] Fix dumping by-ref variadics (nicolas-grekas)
45+
* bug #20734 [Security] AbstractVoter->supportsAttribute gives false positive if attribute is zero (0) (martynas-foodpanda)
46+
* bug #14082 [config] Fix issue when key removed and left value only (zerustech)
47+
* bug #20847 [Console] fixed BC issue with static closures (araines)
48+
1049
* 2.8.15 (2016-12-13)
1150

1251
* bug #20714 [FrameworkBundle] Fix unresolved parameters from default configs in debug:config (chalasr)

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.16-DEV';
62+
const VERSION = '2.8.16';
6363
const VERSION_ID = 20816;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 16;
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