8000 Merge pull request #24156 from fabpot/release-3.3.9 · ajgarlag/symfony@a9d2f68 · GitHub
[go: up one dir, main page]

Skip to content

Commit a9d2f68

Browse files
authored
Merge pull request symfony#24156 from fabpot/release-3.3.9
released v3.3.9
2 parents 51af90e + b9c93f1 commit a9d2f68

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG-3.3.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ in 3.3 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/v3.3.0...v3.3.1
99

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+
1027
* 3.3.8 (2017-08-28)
1128

1229
* bug #24016 [DI] Fix tracking env var placeholders nested in object graphs (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6161

6262
private $projectDir;
6363

64-
const VERSION = '3.3.9-DEV';
64+
const VERSION = '3.3.9';
6565
const VERSION_ID = 30309;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
6868
const RELEASE_VERSION = 9;
69-
const EXTRA_VERSION = 'DEV';
69+
const EXTRA_VERSION = '';
7070

7171
const END_OF_MAINTENANCE = '01/2018';
7272
const END_OF_LIFE = '07/2018';

0 commit comments

Comments
 (0)
0