8000 Merge pull request #22949 from fabpot/release-3.3.0 · symfony/symfony@5a7e31c · GitHub
[go: up one dir, main page]

Skip to content

Commit 5a7e31c

Browse files
authored
Merge pull request #22949 from fabpot/release-3.3.0
released v3.3.0
2 parents 1fba4d6 + e6eb52c commit 5a7e31c

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

CHANGELOG-3.3.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ 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.0 (2017-05-29)
11+
12+
* bug #22940 [Config] Fallback to regular import when glob fails (nicolas-grekas)
13+
* bug #22847 [Console] ChoiceQuestion must have choices (ro0NL)
14+
* bug #22900 [FrameworkBundle][Console] Fix the override of a command registered by the kernel (aaa2000)
15+
* bug #22930 Revert "bug #22925 [PhpUnitBridge] Adjust PHPUnit class_alias check (nicolas-grekas)
16+
* bug #22910 [Filesystem] improve error handling in lock() (xabbuh)
17+
* bug #22924 [Cache] Dont use pipelining with RedisCluster (nicolas-grekas)
18+
* bug #22928 [WebProfilerBundle] Fixed options stub values display in form profiler (HeahDude)
19+
* feature #22838 Make the simple exception pages match the new style (javiereguiluz)
20+
* bug #22925 [PhpUnitBridge] Adjust PHPUnit class_alias check to also check for namespaced class (GawainLynch)
21+
* bug #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee)
22+
* bug #22921 [FrameworkBundle] Only override getProjectDir if it exists in the kernel (aschempp)
23+
* feature #22905 [FrameworkBundle][Validator] Move the PSR-11 factory to the component (ogizanagi)
24+
* bug #22728 [HttpKernel] Fix kernel.project_dir extensibility (chalasr)
25+
* bug #22829 [Yaml] fix colon without space deprecation (xabbuh)
26+
* bug #22901 Fix missing abstract key in XmlDumper (weaverryan)
27+
* bug #22912 [DI] Avoid private call to Container::has() (ro0NL)
28+
* feature #22904 [HttpFoundation] Add Request::HEADER_X_FORWARDED_AWS_ELB const (nicolas-grekas)
29+
* bug #22878 [Yaml] parse PHP constants in mapping keys (xabbuh)
30+
* bug #22873 [HttpKernel] don't call getTrustedHeaderName() if possible (xabbuh)
31+
* feature #22892 [ProxyManager] Add FC layer (nicolas-grekas)
32+
* bug #22866 [DI] Check for privates before shared services (ro0NL)
33+
* feature #22884 [DI] Add missing deprecation on Extension::getClassesToCompile (nicolas-grekas)
34+
* bug #22874 [WebProfilerBundle] Fix sub-requests display in time profiler panel (nicolas-grekas)
35+
* bug #22853 [Yaml] fix multiline block handling (xabbuh)
36+
* bug #22872 [FrameworkBundle] Handle project dir in cache:clear command (nicolas-grekas)
37+
* feature #22808 [FrameworkBundle][Validator] Deprecate passing validator instances/aliases over using the service locator (ogizanagi)
38+
* bug #22857 [DI] Fix autowire error for inlined services (weaverryan)
39+
* bug #22858 [SecurityBundle] Prevent auto-registration of UserPasswordEncoderCommand (chalasr)
40+
* bug #22859 [Profiler][VarDumper] Fix searchbar css when in toolbar (ogizanagi)
41+
* bug #22614 [Process] Fixed escaping arguments on Windows when inheritEnvironmentVariables is set to false (maryo)
42+
* bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh)
43+
* bug #22781 [DI][Serializer] Fix missing de(normalizer|coder) autoconfig (ogizanagi)
44+
* bug #22790 [DependencyInjection] Fix dumping of RewindableGenerator with empty IteratorArgument (meyerbaptiste)
45+
* bug #22787 [MonologBridge] Fix the Monlog ServerLogHandler from Hanging on Windows (ChadSikorra)
46+
* bug #22768 Use 0.0.0.0 as the server log command host default. (ChadSikorra)
47+
* bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz)
48+
1049
* 3.3.0-RC1 (2017-05-17)
1150

1251
* bug #22715 [FrameworkBundle] remove Security deps from the require section (xabbuh)

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