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 46d4a90

Browse filesBrowse files
authored
Merge pull request #25321 from fabpot/release-3.4.1
released v3.4.1
2 parents 0ed6e35 + 3a2d88f commit 46d4a90
Copy full SHA for 46d4a90

File tree

2 files changed

+29
-2
lines changed
Filter options

2 files changed

+29
-2
lines changed

‎CHANGELOG-3.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.4.md
+27Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ in 3.4 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.4.0...v3.4.1
99

10+
* 3.4.1 (2017-12-04)
11+
12+
* bug #25304 [Bridge/PhpUnit] Prefer $_SERVER['argv'] over $argv (ricknox)
13+
* bug #25272 [SecurityBundle] fix setLogoutOnUserChange calls for context listeners (dmaicher)
14+
* bug #25282 [DI] Register singly-implemented interfaces when doing PSR-4 discovery (nicolas-grekas)
15+
* bug #25274 [Security] Adding a GuardAuthenticatorHandler alias (weaverryan)
16+
* bug #25308 [FrameworkBundle] Fix a bug where a color tag will be shown when passing an antislash (Simperfit)
17+
* bug #25278 Fix for missing whitespace control modifier in form layout (kubawerlos)
18+
* bug #25306 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
19+
* bug #25305 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
20+
* bug #25236 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
21+
* bug #25312 [DI] Fix deep-inlining of non-shared refs (nicolas-grekas)
22+
* bug #25309 [Yaml] parse newlines in quoted multiline strings (xabbuh)
23+
* bug #25313 [DI] Fix missing unset leading to false-positive circular ref (nicolas-grekas)
24+
* bug #25285 [DI] Throw an exception if Expression Language is not installed (sroze)
25+
* bug #25241 [Yaml] do not eagerly filter comment lines (xabbuh)
26+
* bug #25297 [Validator] Fixed the @Valid(groups={"group"}) against null exception case (vudaltsov)
27+
* bug #25255 [Console][DI] Fail gracefully (nicolas-grekas)
28+
* bug #25264 [DI] Trigger deprecation when setting a to-be-private synthetic service (nicolas-grekas)
29+
* bug #25258 [link] Prevent warnings when running link with 2.7 (dunglas)
30+
* bug #25244 [DI] Add missing deprecation when fetching private services from ContainerBuilder (nicolas-grekas)
31+
* bug #24750 [Validator] ExpressionValidator should use OBJECT_TO_STRING (Simperfit)
32+
* bug #25247 [DI] Fix false-positive circular exception (nicolas-grekas)
33+
* bug #25226 [HttpKernel] Fix issue when resetting DumpDataCollector (Pierstoval)
34+
* bug #25230 Use a more specific file for detecting the bridge (greg0ire)
35+
* bug #25232 [WebProfilerBundle] [TwigBundle] Fix Profiler breaking XHTML pages (tistre)
36+
1037
* 3.4.0 (2017-11-30)
1138

1239
* bug #25220 [HttpFoundation] Add Session::isEmpty(), fix MockFileSessionStorage to behave like the native one (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
@@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6767
private $requestStackSize = 0;
6868
private $resetServices = false;
6969

70-
const VERSION = '3.4.1-DEV';
70+
const VERSION = '3.4.1';
7171
const VERSION_ID = 30401;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 1;
75-
const EXTRA_VERSION = 'DEV';
75+
const EXTRA_VERSION = '';
7676

7777
const END_OF_MAINTENANCE = '11/2020';
7878
const END_OF_LIFE = '11/2021';

0 commit comments

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