File tree 2 files changed +15
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel
2 files changed +15
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ in 2.8 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.8.0...v2.8.1
9
9
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
+
10
23
* 2.8.39 (2018-04-30)
11
24
12
25
* bug #27067 [ HttpFoundation] Fix setting session-related ini settings (e-moe)
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
59
59
protected $ startTime ;
60
60
protected $ loadClassCache ;
61
61
62
- const VERSION = '2.8.40-DEV ' ;
62
+ const VERSION = '2.8.40 ' ;
63
63
const VERSION_ID = 20840 ;
64
64
const MAJOR_VERSION = 2 ;
65
65
const MINOR_VERSION = 8 ;
66
66
const RELEASE_VERSION = 40 ;
67
- const EXTRA_VERSION = 'DEV ' ;
67
+ const EXTRA_VERSION = '' ;
68
68
69
69
const END_OF_MAINTENANCE = '11/2018 ' ;
70
70
const END_OF_LIFE = '11/2019 ' ;
You can’t perform that action at this time.
0 commit comments