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

Skip to content

Commit 8408816

Browse files
committed
Merge pull request #18740 from fabpot/release-2.8.6
released v2.8.6
2 parents d86918e + 6d3b1e2 commit 8408816

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ 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.6 (2016-05-09)
11+
12+
* security #18736 Fixed issue with blank password with Ldap (csarrazi)
13+
* security #18733 limited the maximum length of a submitted username (fabpot)
14+
* bug #18730 [FrameworkBundle] prevent calling get() for service_container service (xabbuh)
15+
* bug #18705 added a conflict between Monolog bridge 2.8 and HTTP Kernel 3.0+ (fabpot)
16+
* bug #18709 [DependencyInjection] top-level anonymous services must be public (xabbuh)
17+
* bug #18388 [EventDispatcher] check for method to exist (xabbuh)
18+
* bug #18699 [DependencyInjection] Use the priority of service decoration on service with parent (hason)
19+
* bug #18692 add @Event annotation for KernelEvents (Haehnchen)
20+
* bug #18246 [DependencyInjection] fix ambiguous services schema (backbone87)
21+
1022
* 2.8.5 (2016-04-29)
1123

1224
* bug #18180 [Form] fixed BC break with pre selection of choices with `ChoiceType` and its children (HeahDude)

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