Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 816bf50

Browse files
authored
Merge pull request #27329 from fabpot/release-3.4.10
released v3.4.10
2 parents 440bd7e + 7be0b08 commit 816bf50

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG-3.4.md

Lines 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.10 (2018-05-21)
11+
12+
* bug #27264 [Validator] Use strict type in URL validator (mimol91)
13+
* bug #27267 [DependencyInjection] resolve array env vars (jamesthomasonjr)
14+
* bug #26781 [Form] Fix precision of MoneyToLocalizedStringTransformer's divisions on transform() (syastrebov)
15+
* bug #27286 [Translation] Add Occitan plural rule (kylekatarnls)
16+
* bug #27271 [DI] Allow defining bindings on ChildDefinition (nicolas-grekas)
17+
* bug #27246 Disallow invalid characters in session.name (ostrolucky)
18+
* bug #27287 [PropertyInfo] fix resolving parent|self type hints (nicolas-grekas)
19+
* bug #27281 [HttpKernel] Fix dealing with self/parent in ArgumentMetadataFactory (fabpot)
20+
* bug #24805 [Security] Fix logout (MatTheCat)
21+
* bug #27265 [DI] Shared services should not be inlined in non-shared ones (nicolas-grekas)
22+
* bug #27141 [Process] Suppress warnings when open_basedir is non-empty (cbj4074)
23+
* bug #27250 [Session] limiting :key for GET_LOCK to 64 chars (oleg-andreyev)
24+
* bug #27237 [Debug] Fix populating error_get_last() for handled silent errors (nicolas-grekas)
25+
* bug #27232 [Cache][Lock] Fix usages of error_get_last() (nicolas-grekas)
26+
* bug #27236 [Filesystem] Fix usages of error_get_last() (nicolas-grekas)
27+
* bug #27191 [DI] Display previous error messages when throwing unused bindings (nicolas-grekas)
28+
* bug #27231 [FrameworkBundle] Fix cache:clear on vagrant (nicolas-grekas)
29+
* bug #27222 [WebProfilerBundle][Cache] Fix misses calculation when calling getItems (fsevestre)
30+
* bug #27227 [HttpKernel] Handle NoConfigurationException "onKernelException()" (nicolas-grekas)
31+
* bug #27152 [HttpFoundation] use brace-style regex delimiters (xabbuh)
32+
* bug #27158 [Cache] fix logic for fetching tag versions on TagAwareAdapter (dmaicher)
33+
* bug #27143 [Console] By default hide the short exception trace line from exception messages in Symfony's commands (yceruto)
34+
* bug #27133 [Doctrine Bridge] fix priority for doctrine event listeners (dmaicher)
35+
* bug #27135 [FrameworkBundle] Use the correct service id for CachePoolPruneCommand in its compiler pass (DemonTPx)
36+
1037
* 3.4.9 (2018-04-30)
1138

1239
* feature #24896 Add CODE_OF_CONDUCT.md (egircys)

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.10-DEV';
70+
const VERSION = '3.4.10';
7171
const VERSION_ID = 30410;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
7474
const RELEASE_VERSION = 10;
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)