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 c406c5a

Browse filesBrowse files
authored
Merge pull request #28039 from fabpot/release-3.4.13
released v3.4.13
2 parents 707e52a + 7446a29 commit c406c5a
Copy full SHA for c406c5a

File tree

2 files changed

+35
-2
lines changed
Filter options

2 files changed

+35
-2
lines changed

‎CHANGELOG-3.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.4.md
+33Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ 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.13 (2018-07-23)
11+
12+
* bug #28005 [HttpKernel] Fixed templateExists on parse error of the template name (yceruto)
13+
* bug #27997 Serbo-Croatian has Serbian plural rule (kylekatarnls)
14+
* bug #26193 Fix false-positive deprecation notices for TranslationLoader and WriteCheckSessionHandler (iquito)
15+
* bug #27941 [WebProfilerBundle] Fixed icon alignment issue using Bootstrap 4.1.2 (jmsche)
16+
* bug #27937 [HttpFoundation] reset callback on StreamedResponse when setNotModified() is called (rubencm)
17+
* bug #27927 [HttpFoundation] Suppress side effects in 'get' and 'has' methods of NamespacedAttributeBag (webnet-fr)
18+
* bug #27923 [Form/Profiler] Massively reducing memory footprint of form profiling pages... (VincentChalnot)
19+
* bug #27918 [Console] correctly return parameter's default value on "--" (seschwar)
20+
* bug #27904 [Filesystem] fix lock file permissions (fritzmg)
21+
* bug #27903 [Lock] fix lock file permissions (fritzmg)
22+
* bug #27889 [Form] Replace .initialism with .text-uppercase. (vudaltsov)
23+
* bug #27902 Fix the detection of the Process new argument (stof)
24+
* bug #27885 [HttpFoundation] don't encode cookie name for BC (nicolas-grekas)
25+
* bug #27782 [DI] Fix dumping ignore-on-uninitialized references to synthetic services (nicolas-grekas)
26+
* bug #27435 [OptionResolver] resolve arrays (Doctrs)
27+
* bug #27728 [TwigBridge] Fix missing path and separators in loader paths list on debug:twig output (yceruto)
28+
* bug #27837 [PropertyInfo] Fix dock block lookup fallback loop (DerManoMann)
29+
* bug #27758 [WebProfilerBundle] Prevent toolbar links color override by css (alcalyn)
30+
* bug #27834 [DI] Don't show internal service id on binding errors (nicolas-grekas)
31+
* bug #27831 Check for Hyper terminal on all operating systems. (azjezz)
32+
* bug #27794 Add color support for Hyper terminal . (azjezz)
33+
* bug #27809 [HttpFoundation] Fix tests: new message for status 425 (dunglas)
34+
* bug #27618 [PropertyInfo] added handling of nullable types in PhpDoc (oxan)
35+
* bug #27659 [HttpKernel] Make AbstractTestSessionListener compatible with CookieClearingLogoutHandler (thewilkybarkid)
36+
* bug #27752 [Cache] provider does not respect option maxIdLength with versioning enabled (Constantine Shtompel)
37+
* bug #27776 [ProxyManagerBridge] Fix support of private services (bis) (nicolas-grekas)
38+
* bug #27714 [HttpFoundation] fix session tracking counter (nicolas-grekas, dmaicher)
39+
* bug #27747 [HttpFoundation] fix registration of session proxies (nicolas-grekas)
40+
* bug #27722 Redesign the Debug error page in prod (javiereguiluz)
41+
* bug #27716 [DI] fix dumping deprecated service in yaml (nicolas-grekas)
42+
1043
* 3.4.12 (2018-06-25)
1144

1245
* bug #27626 [TwigBundle][DX] Only add the Twig WebLinkExtension if the WebLink component is enabled (thewilkybarkid)

‎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.13-DEV';
70+
const VERSION = '3.4.13';
7171
const VERSION_ID = 30413;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 13;
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.