8000 Merge pull request #25086 from fabpot/release-3.4.0-RC1 · symfony/symfony@fcfcaa2 · GitHub
[go: up one dir, main page]

Skip to content

Commit fcfcaa2

Browse files
authored
Merge pull request #25086 from fabpot/release-3.4.0-RC1
released v3.4.0-RC1
2 parents 72a204e + 5d27a7b commit fcfcaa2

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG-3.4.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,38 @@ 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.0-RC1 (2017-11-21)
11+
12+
* bug #25077 [Bridge/Twig] Let getFlashes starts the session (MatTheCat)
13+
* bug #25082 [HttpKernel] Disable container inlining when legacy inlining has been used (nicolas-grekas)
14+
* bug #25072 [Bridge/PhpUnit] Remove trailing "\n" from ClockMock::microtime(false) (joky)
15+
* bug #25069 [Debug] Fix undefined variable $lightTrace (nicolas-grekas)
16+
* bug #25053 [Serializer] Fixing PropertyNormalizer supports parent properties (Christopher Hertel)
17+
* bug #25055 [DI] Analyze setter-circular deps more precisely (nicolas-grekas)
18+
* feature #25056 [Bridge/PhpUnit] Sync the bridge version installed in vendor/ and in phpunit clone (nicolas-grekas)
19+
* bug #25045 [SecurityBundle] Don't trigger auto-picking notice if provider is set per listener (chalasr)
20+
* bug #25033 [FrameworkBundle] Dont create empty bundles directory by default (ro0NL)
21+
* bug #25037 [DI] Skip hot_path tag for deprecated services as their class might also be (nicolas-grekas)
22+
* bug #25038 [Cache] Memcached options should ignore "lazy" (nicolas-grekas)
23+
* bug #25014 Move deprecation under use statements (greg0ire)
24+
* bug #25030 [Console] Fix ability to disable lazy commands (chalasr)
25+
* bug #25032 [Bridge\PhpUnit] Disable broken auto-require mechanism of phpunit (nicolas-grekas)
26+
* bug #25027 [FrameworkBundle] Hide server:log command based on deps (sroze)
27+
* bug #24991 [DependencyInjection] Single typed argument can be applied on multiple parameters (nicolas-grekas, sroze)
28+
* bug #24983 [Validator] enter the context in which to validate (xabbuh)
29+
* bug #24956 Fix ambiguous pattern (weltling)
30+
* bug #24732 [DependencyInjection] Prevent service:method factory notation in PHP config (vudaltsov)
31+
* bug #24979 [HttpKernel] remove services resetter even when it's an alias (xabbuh)
32+
* bug #24972 [HttpKernel] Fix service arg resolver for controllers as array callables (sroze, nicolas-grekas)
33+
* bug #24971 [FrameworkBundle] Empty event dispatcher earlier in CacheClearCommand (nicolas-grekas)
34+
* security #24995 Validate redirect targets using the session cookie domain (nicolas-grekas)
35+
* security #24994 Prevent bundle readers from breaking out of paths (xabbuh)
36+
* security #24993 Ensure that submitted data are uploaded files (xabbuh)
37+
* security #24992 Namespace generated CSRF tokens depending of the current scheme (dunglas)
38+
* bug #24954 [DI] Fix dumping with custom base class (nicolas-grekas)
39+
* bug #24952 [HttpFoundation] Fix session-related BC break (nicolas-grekas, sroze)
40+
* bug #24943 [FrameworkBundle] Wire the translation.reader service instead of deprecated translation.loader in commands (ogizanagi)
41+
1042
* 3.4.0-BETA4 (2017-11-12)
1143

1244
* bug #24874 [TwigBridge] Fixed the .form-check-input class in the bs4 templates (vudaltsov)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.0-DEV';
70+
const VERSION = '3.4.0-RC1';
7171
const VERSION_ID = 30400;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 0;
75-
const EXTRA_VERSION = 'DEV';
75+
const EXTRA_VERSION = 'RC1';
7676

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

0 commit comments

Comments
 (0)
0