File tree 2 files changed +18
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel
2 files changed +18
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,22 @@ in 4.0 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/v4.0.0...v4.0.1
9
9
10
+ * 4.0.0-RC2 (2017-11-24)
11
+
12
+ * bug #25146 [ DI] Dont resolve envs in service ids (nicolas-grekas)
13
+ * bug #25113 [ Routing] Fix "config-file-relative" annotation loader resources (nicolas-grekas, sroze)
14
+ * bug #25065 [ FrameworkBundle] Update translation commands to work with default paths (yceruto)
15
+ * bug #25109 Make debug: container search command case-insensitive (jzawadzki)
16
+ * bug #25121 [ FrameworkBundle] Fix AssetsInstallCommand (nicolas-grekas)
17
+ * bug #25102 [ Form] Fixed ContextErrorException in FileType (chihiro-adachi)
18
+ * bug #25130 [ DI] Fix handling of inlined definitions by ContainerBuilder (nicolas-grekas)
19
+ * bug #25119 [ DI] Fix infinite loop when analyzing references (nicolas-grekas)
20
+ * bug #25094 [ FrameworkBundle] [ DX ] Display a nice error message if an enabled component is missing (derrabus)
21
+ * bug #25100 [ SecurityBundle] providerIds is undefined error when firewall provider is not specified (karser)
22
+ * bug #25100 [ SecurityBundle] providerIds is undefined error when firewall provider is not specified (karser)
23
+ * bug #25100 [ SecurityBundle] providerIds is undefined error when firewall provider is not specified (karser)
24
+ * bug #25097 [ Bridge\PhpUnit] Turn "preserveGlobalState" to false by default, revert "Blacklist" removal (nicolas-grekas)
25
+
10
26
* 4.0.0-RC1 (2017-11-21)
11
27
12
28
* bug #25077 [ Bridge/Twig] Let getFlashes starts the session (MatTheCat)
Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
63
63
private $ requestStackSize = 0 ;
64
64
private $ resetServices = false ;
65
65
66
- const VERSION = '4.0.0-DEV ' ;
66
+ const VERSION = '4.0.0-RC2 ' ;
67
67
const VERSION_ID = 40000 ;
68
68
const MAJOR_VERSION = 4 ;
69
69
const MINOR_VERSION = 0 ;
70
70
const RELEASE_VERSION = 0 ;
71
- const EXTRA_VERSION = 'DEV ' ;
71
+ const EXTRA_VERSION = 'RC2 ' ;
72
72
73
73
const END_OF_MAINTENANCE = '07/2018 ' ;
74
74
const END_OF_LIFE = '01/2019 ' ;
You can’t perform that action at this time.
0 commit comments