8000 Merge pull request #25319 from fabpot/release-3.3.14 · symfony/symfony@8e2b473 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e2b473

Browse files
authored
Merge pull request #25319 from fabpot/release-3.3.14
released v3.3.14
2 parents 31e4533 + 4965ef5 commit 8e2b473

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-3.3.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ 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.14 (2017-12-04)
11+
12+
* bug #25304 [Bridge/PhpUnit] Prefer $_SERVER['argv'] over $argv (ricknox)
13+
* bug #25308 [FrameworkBundle] Fix a bug where a color tag will be shown when passing an antislash (Simperfit)
14+
* bug #25278 Fix for missing whitespace control modifier in form layout (kubawerlos)
15+
* bug #25305 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
16+
* bug #25236 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
17+
* bug #25312 [DI] Fix deep-inlining of non-shared refs (nicolas-grekas)
18+
* bug #25309 [Yaml] parse newlines in quoted multiline strings (xabbuh)
19+
* bug #25241 [Yaml] do not eagerly filter comment lines (xabbuh)
20+
* bug #25258 [link] Prevent warnings when running link with 2.7 (dunglas)
21+
* bug #24750 [Validator] ExpressionValidator should use OBJECT_TO_STRING (Simperfit)
22+
* bug #25232 [WebProfilerBundle] [TwigBundle] Fix Profiler breaking XHTML pages (tistre)
23+
* bug #25209 [VarDumper] Dont use empty(), it chokes on eg GMP objects (nicolas-grekas)
24+
* bug #25200 [HttpKernel] Arrays with scalar values passed to ESI fragment renderer throw deprecation notice (Simperfit)
25+
* bug #25217 [Dotenv] Changed preg_match flags from null to 0 (deekthesqueak)
26+
* bug #25203 [DI] Fix infinite loop in InlineServiceDefinitionsPass (nicolas-grekas)
27+
* bug #25185 [Serializer] Do not cache attributes if `attributes` in context (sroze)
28+
* bug #25182 [HttpFoundation] AutExpireFlashBag should not clear new flashes (Simperfit, sroze)
29+
* bug #25179 [FrameworkBundle][Serializer] Remove YamlEncoder definition if Yaml component isn't installed (ogizanagi)
30+
* bug #25163 [DI] Fix tracking of env vars in exceptions (nicolas-grekas)
31+
* bug #25152 [Form] Don't rely on `Symfony\Component\HttpFoundation\File\File` if http-foundation isn't in FileType (issei-m)
32+
* bug #24987 [Console] Fix global console flag when used in chain (Simperfit)
33+
* bug #25146 [DI] Dont resolve envs in service ids (nicolas-grekas)
34+
* bug #25113 [Routing] Fix "config-file-relative" annotation loader resources (nicolas-grekas, sroze)
35+
* bug #25109 Make debug:container search command case-insensitive (jzawadzki)
36+
* bug #25043 [Yaml] added ability for substitute aliases when mapping is on single line (Michał Strzelecki, xabbuh)
37+
* bug #25102 [Form] Fixed ContextErrorException in FileType (chihiro-adachi)
38+
* bug #25130 [DI] Fix handling of inlined definitions by ContainerBuilder (nicolas-grekas)
39+
* bug #25094 [FrameworkBundle][DX] Display a nice error message if an enabled component is missing (derrabus)
40+
* bug #25097 [Bridge\PhpUnit] Turn "preserveGlobalState" to false by default, revert "Blacklist" removal (nicolas-grekas)
41+
* bug #25072 [Bridge/PhpUnit] Remove trailing "\n" from ClockMock::microtime(false) (joky)
42+
* bug #25032 [Bridge\PhpUnit] Disable broken auto-require mechanism of phpunit (nicolas-grekas)
43+
* bug #24956 Fix ambiguous pattern (weltling)
44+
1045
* 3.3.13 (2017-11-16)
1146

1247
* security #24995 Validate redirect targets using the session cookie domain (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.14-DEV';
64+
const VERSION = '3.3.14';
6565
const VERSION_ID = 30314;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
6868
const RELEASE_VERSION = 14;
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