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 de4db89

Browse filesBrowse files
authored
Merge pull request #23068 from fabpot/release-3.3.1
released v3.3.1
2 parents 085d8fe + af5522e commit de4db89
Copy full SHA for de4db89

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+32
-2
lines changed

‎CHANGELOG-3.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.3.md
+30Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ 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.1 (2017-06-05)
11+
12+
* bug #23067 [HttpFoundation][FrameworkBundle] Revert "trusted proxies" BC break (nicolas-grekas)
13+
* bug #23065 [Cache] Fallback to positional when keyed results are broken (nicolas-grekas)
14+
* bug #22981 [DependencyInjection] Fix named args support in ChildDefinition (dunglas)
15+
* bug #23050 [Form][Profiler] Fixes form collector triggering deprecations (ogizanagi)
16+
* bug #22971 [Profiler] Fix code excerpt wrapping (ogizanagi)
17+
* bug #23049 [FrameworkBundle] mitigate BC break with empty trusted_proxies (xabbuh)
18+
* bug #23045 [Cache] fix Redis scheme detection (xabbuh)
19+
* bug #23013 Parse the _controller format in sub-requests (weaverryan)
20+
* bug #23015 [PhpUnitBridge] Fix detection of PHPUnit 5 (enumag)
21+
* bug #23041 [Config] Always protected ClassExistenceResource against bad parents (nicolas-grekas)
22+
* bug #22988 [PropertyInfo][DoctrineBridge] The bigint Doctrine's type must be converted to string (dunglas)
23+
* bug #23014 Fix optional cache warmers are always instantiated whereas they should be lazy-loaded (romainneutron)
24+
* feature #23022 [Di] Remove closure-proxy arguments (nicolas-grekas)
25+
* bug #23024 [EventDispatcher] Fix ContainerAwareEventDispatcher::hasListeners(null) (nicolas-grekas)
26+
* bug #23008 [EventDispatcher] Handle laziness internally instead of relying on ClosureProxyArgument (nicolas-grekas)
27+
* bug #23018 [FrameworkBundle] Fix CacheCollectorPass priority (chalasr)
28+
* bug #23009 [Routing] Allow GET requests to be redirected. Fixes #23004 (frankdejonge)
29+
* bug #22996 [Form] Fix \IntlDateFormatter timezone parameter usage to bypass PHP bug #66323 (romainneutron)
30+
* bug #22965 [Cache] Ignore missing annotations.php (ro0NL)
31+
* bug #22993 [DI] Autowiring exception thrown when inlined service is removed (weaverryan)
32+
* bug #22999 Better DI type deprecation message (weaverryan)
33+
* bug #22985 [Config] Allow empty globs (nicolas-grekas)
34+
* bug #22961 [HttpKernel] Support unknown format in LoggerDataCollector (iltar)
35+
* bug #22991 [DI] Don't throw Autowire exception for removed service with private __construct (weaverryan)
36+
* bug #22968 [Profiler] Fix text selection & click on file links on exception pages (ogizanagi)
37+
* bug #22994 Harden the debugging of Twig filters and functions (stof)
38+
* bug #22960 [Cache] Fix decoration of TagAware adapters in dev (chalasr)
39+
1040
* 3.3.0 (2017-05-29)
1141

1242
* bug #22940 [Config] Fallback to regular import when glob fails (nicolas-grekas)

‎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
@@ -61,12 +61,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6161

6262
private $projectDir;
6363

64-
const VERSION = '3.3.1-DEV';
64+
const VERSION = '3.3.1';
6565
const VERSION_ID = 30301;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
6868
const RELEASE_VERSION = 1;
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.