Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 901a4fb

Browse files
authored
Merge pull request #27328 from fabpot/release-2.8.40
released v2.8.40
2 parents e336711 + ca80b59 commit 901a4fb

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.40 (2018-05-21)
11+
12+
* bug #26781 [Form] Fix precision of MoneyToLocalizedStringTransformer's divisions on transform() (syastrebov)
13+
* bug #27286 [Translation] Add Occitan plural rule (kylekatarnls)
14+
* bug #27246 Disallow invalid characters in session.name (ostrolucky)
15+
* bug #24805 [Security] Fix logout (MatTheCat)
16+
* bug #27141 [Process] Suppress warnings when open_basedir is non-empty (cbj4074)
17+
* bug #27250 [Session] limiting :key for GET_LOCK to 64 chars (oleg-andreyev)
18+
* bug #27237 [Debug] Fix populating error_get_last() for handled silent errors (nicolas-grekas)
19+
* bug #27236 [Filesystem] Fix usages of error_get_last() (nicolas-grekas)
20+
* bug #27152 [HttpFoundation] use brace-style regex delimiters (xabbuh)
21+
* feature #24896 Add CODE_OF_CONDUCT.md (egircys)
22+
1023
* 2.8.39 (2018-04-30)
1124

1225
* bug #27067 [HttpFoundation] Fix setting session-related ini settings (e-moe)

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.40-DEV';
62+
const VERSION = '2.8.40';
6363
const VERSION_ID = 20840;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 40;
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)