Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 09ae535

Browse filesBrowse files
committed
Merge pull request #17953 from fabpot/release-3.0.3
released v3.0.3
2 parents 487f068 + 406a6d1 commit 09ae535
Copy full SHA for 09ae535

File tree

Expand file treeCollapse file tree

2 files changed

+45
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+45
-2
lines changed

‎CHANGELOG-3.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.0.md
+43Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ in 3.0 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.0.0...v3.0.1
99

10+
* 3.0.3 (2016-02-28)
11+
12+
* bug #17919 #17676 - making the proxy instantiation compatible with ProxyManager 2.x by detecting proxy features (Ocramius)
13+
* bug #17947 Fix - #17676 (backport #17919 to 2.3) (Ocramius)
14+
* bug #17942 Fix bug when using an private aliased factory service (WouterJ)
15+
* bug #17798 [Form] Fix BC break by allowing 'choice_label' option to be 'false' in ChoiceType (HeahDude)
16+
* bug #17542 ChoiceFormField of type "select" could be "disabled" (bouland)
17+
* bug #17602 [HttpFoundation] Fix BinaryFileResponse incorrect behavior with if-range header (bburnichon)
18+
* bug #17760 [Form] fix choice value "false" in ChoiceType (HeahDude)
19+
* bug #17914 [Console] Fix escaping of trailing backslashes (nicolas-grekas)
20+
* bug #17074 Fix constraint validator alias being required (Triiistan)
21+
* bug #17866 [DependencyInjection] replace alias in factories (xabbuh)
22+
* bug #17867 [DependencyInjection] replace alias in factory services (xabbuh)
23+
* bug #17865 [FrameworkBundle] disable the assets helper when assets are disabled (xabbuh)
24+
* bug #17860 Fixed the antialiasing of the toolbar text (javiereguiluz)
25+
* bug #17569 [FrameworkBundle] read commands from bundles when accessing list (havvg)
26+
* bug #16987 [FileSystem] Windows fix (flip111)
27+
* bug #17787 [Form] Fix choice placeholder edge cases (Tobion)
28+
* bug #17835 [Yaml] fix default timezone to be UTC (xabbuh)
29+
* bug #17823 [DependencyInjection] fix dumped YAML string (xabbuh)
30+
* bug #17818 [Console] InvalidArgumentException is thrown under wrong condition (robinkanters)
31+
* bug #17819 [HttpKernel] Prevent a fatal error when DebugHandlersListener is used with a kernel with no terminateWithException() method (jakzal)
32+
* bug #17814 [DependencyInjection] fix dumped YAML snytax (xabbuh)
33+
* bug #17099 [Form] Fixed violation mapping if multiple forms are using the same (or part of the same) property path (alekitto)
34+
* bug #17694 [DoctrineBridge] [Form] fix choice_value in EntityType (HeahDude)
35+
* bug #17790 [Config] Fix EnumNodeDefinition to allow building enum nodes with one element (ogizanagi)
36+
* bug #17729 [Yaml] properly parse lists in object maps (xabbuh)
37+
* bug #17719 [DependencyInjection] fixed exceptions thrown by get method of ContainerBuilder (lukaszmakuch)
38+
* bug #17742 [DependencyInjection] Fix #16461 Container::set() replace aliases (mnapoli)
39+
* bug #17745 Added more exceptions to singularify method (javiereguiluz)
40+
* bug #17691 Fixed (string) catchable fatal error for PHP Incomplete Class instances (yceruto)
41+
* bug #17766 Fixed (string) catchable fatal error for PHP Incomplete Class instances (yceruto)
42+
* bug #17757 [HttpFoundation] BinaryFileResponse sendContent return as parent. (2.3) (SpacePossum)
43+
* bug #17748 [DomCrawler] Remove the overridden getHash() method to prevent problems when cloning the crawler (jakzal)
44+
* bug #17725 [WebProfilerBundle] Add width attribute on SVG - Fix toolbar profiler on microsoft edge (AlexandrePavy)
45+
* bug #17703 [FrameworkBundle] Support autowiring for TranslationInterface (dunglas)
46+
* bug #17613 [WebProfiler] Fixed logo and menu profiler for Microsoft Edge (WhiteEagle88)
47+
* bug #17702 [TwigBridge] forward compatibility with Yaml 3.1 (xabbuh)
48+
* bug #17673 [Routing] add files used in FileResource objects (xabbuh)
49+
* bug #17672 [DependencyInjection][Routing] add files used in FileResource objects (xabbuh)
50+
* bug #17669 [Console] remove readline support (xabbuh)
51+
* bug #17600 Fixed the Bootstrap form theme for inlined checkbox/radio (javiereguiluz)
52+
1053
* 3.0.2 (2016-02-03)
1154

1255
* bug #17658 [FrameworkBundle] fix assets and templating tests (xabbuh)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '3.0.3-DEV';
62+
const VERSION = '3.0.3';
6363
const VERSION_ID = 30003;
6464
const MAJOR_VERSION = 3;
6565
const MINOR_VERSION = 0;
6666
const RELEASE_VERSION = 3;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '07/2016';
7070
const END_OF_LIFE = '01/2017';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.