File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,23 @@ in 3.3 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/v3.3.0...v3.3.1
9
9
10
+ * 3.3.9 (2017-09-11)
11
+
12
+ * bug #24141 [ DomCrawler] Fix conversion to int on GetPhpFiles (MaraBlaga)
13
+ * bug #23853 Filtering empty uuids in ORMQueryBuilderLoader. (mlazovla)
14
+ * bug #24101 [ Security] Fix exception when use_referer option is true and referer is not set or empty (linniksa)
15
+ * bug #24105 [ Filesystem] check permissions if dump target dir is missing (xabbuh)
16
+ * bug #24126 [ HttpKernel] "controller.service_arguments" services should be public (nicolas-grekas)
17
+ * bug #24113 [ FrameworkBundle] Get KERNEL_CLASS through $_ ENV too for KernelTestCase (yceruto)
18
+ * bug #24115 [ FrameworkBundle] Get KERNEL_DIR through $_ ENV too for KernelTestCase (yceruto)
19
+ * bug #24041 [ ExpressionLanguage] throws an exception on calling uncallable method (fmata)
20
+ * bug #24096 Fix ArrayInput::toString() for VALUE_IS_ARRAY options/args (chalasr)
21
+ * bug #24082 [ DI] Minor fix in dumped code (nicolas-grekas)
22
+ * bug #23969 [ Cache] Use namespace versioning for backends that dont support clearing by keys (nicolas-grekas)
23
+ * bug #24021 [ DI] Don't track merged configs when the extension doesn't expose it
C766
(nicolas-grekas)
24
+ * bug #24011 [ Cache] Always require symfony/polyfill-apcu to provide APCuIterator everywhere (guillaumelecerf)
25
+ * bug #23730 Fixed the escaping of back slashes and << in console output (javiereguiluz)
26
+
10
27
* 3.3.8 (2017-08-28)
11
28
12
29
* bug #24016 [ DI] Fix tracking env var placeholders nested in object graphs (nicolas-grekas)
Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
61
61
62
62
private $ projectDir ;
63
63
64
- const VERSION = '3.3.9-DEV ' ;
64
+ const VERSION = '3.3.9 ' ;
65
65
const VERSION_ID = 30309 ;
66
66
const MAJOR_VERSION = 3 ;
67
67
const MINOR_VERSION = 3 ;
68
68
const RELEASE_VERSION = 9 ;
69
- const EXTRA_VERSION = 'DEV ' ;
69
+ const EXTRA_VERSION = '' ;
70
70
71
71
const END_OF_MAINTENANCE = '01/2018 ' ;
72
72
const END_OF_LIFE = '07/2018 ' ;
You can’t perform that action at this time.
0 commit comments