Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d5461f8

Browse files
authored
Merge pull request #24013 from fabpot/release-3.3.7
released v3.3.7
2 parents b12109d + 8a33ecb commit d5461f8

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG-3.3.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.7 (2017-08-28)
11+
12+
* bug #24009 [DI] Fix tracking env vars when merging configs (bis) (nicolas-grekas)
13+
* bug #23952 [PhpUnitBridge] install PHPUnit 6 on PHP 7.2 (xabbuh)
14+
* bug #23985 [Cache] Workaround zend.detect_unicode + zend.multibyte (nicolas-grekas)
15+
* bug #23989 [Debug] Remove false-positive check in DebugClassLoader (nicolas-grekas)
16+
* bug #23983 [VarDumper] Strengthen dumped JS (nicolas-grekas)
17+
* bug #23982 [VarDumper] Strengthen dumped JS (nicolas-grekas)
18+
* bug #23925 [Validator] Fix use of GroupSequenceProvider in child classes (linniksa)
19+
* bug #23971 [Cache] Fix lazy Memcached connections (nicolas-grekas)
20+
* bug #23970 [Cache] Fix >30 days expirations with Memcached (nicolas-grekas)
21+
* bug #23949 [Dotenv] Get env using $_SERVER to work with fastcgi_param and workaround thread safety issues (nicolas-grekas)
22+
* bug #23799 [Dotenv][WebServerBundle] Override previously loaded variables (voronkovich)
23+
* bug #23676 [WebProfilerBundle] Re add missing link to the controller (lyrixx)
24+
* bug #23870 [DI] Use GlobResource for non-tracked directories (vudaltsov)
25+
* bug #23945 [Validator] Fix Greek translation (azhurb)
26+
* bug #23940 [DI] Fix resolving env vars when compiling a ContainerBuilder (nicolas-grekas)
27+
* bug #23903 [DI] Fix merging of env vars in configs (nicolas-grekas)
28+
* bug #23825 Revert "feature #21038 [FrameworkBundle] deprecated cache:clear with warmup (fabpot)" (nicolas-grekas)
29+
* bug #23899 [DI] Fix reading env vars from fastcgi params (nicolas-grekas)
30+
* bug #23909 [Console] Initialize lazily to render exceptions properly (nicolas-grekas)
31+
* bug #23878 [VarDumper] play nice with open_basedir when looking for composer.json (nicolas-grekas)
32+
* bug #23897 Allow phpdocumentor/reflection-docblock 4 (derrabus)
33+
* bug #23865 [Workflow] fixed InvalidDefinitionException message for StateMachineValidator (fmata)
34+
* bug #23856 [DI] Fix dumping abstract with YamlDumper (nicolas-grekas)
35+
* bug #23848 restrict reflection doc block (ElectricMaxxx)
36+
* bug #23854 [DI] Fix YamlDumper not dumping abstract and autoconfigure (nicolas-grekas)
37+
* bug #23752 Ignore memcached missing key error on session destroy (jderusse)
38+
* bug #23829 Fixed the exception page design in responsive mode (javiereguiluz)
39+
* bug #23828 [Console] Log exit codes as debug messages instead of errors (haroldiedema)
40+
* bug #23763 [Cache] Hash cache key on save (lstrojny)
41+
* bug #23806 [Profiler] Fix request_collector check in main layout (ogizanagi)
42+
* bug #23658 [HttpFoundation] Generate safe fallback filename for wrongly encoded filename (xelaris)
43+
* bug #23776 [FrameworkBundle] Warmup annotations for bundle-less controllers and entities (nicolas-grekas)
44+
* bug #23783 Avoid infinite loops when profiler data is malformed (javiereguiluz)
45+
* bug #23638 [FrameworkBundle][Workflow] better errors when security deps are missing (xabbuh)
46+
* bug #23729 [Bridge\ProxyManager] Dont call __destruct() on non-instantiated services (nicolas-grekas)
47+
* bug #23703 Bump minimal PHP version to ^5.5.9|>=7.0.8 (nicolas-grekas)
48+
* bug #23755 [Config] Fix checking class existence freshness (nicolas-grekas)
49+
1050
* 3.3.6 (2017-08-01)
1151

1252
* bug #22244 [Console] Fix passing options with defaultCommand (Jakub Sacha)

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.7-DEV';
64+
const VERSION = '3.3.7';
6565
const VERSION_ID = 30307;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
6868
const RELEASE_VERSION = 7;
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)