Skip to content

Commit a9373ae

Browse files
authored
Merge pull request #31651 from fabpot/release-4.2.9
released v4.2.9
2 parents 8943d43 + c4462f6 commit a9373ae

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-4.2.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ in 4.2 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/v4.2.0...v4.2.1
99

10+
* 4.2.9 (2019-05-28)
11+
12+
* bug #31584 [Workflow] Do not trigger extra guards (lyrixx)
13+
* bug #31632 [Messenger] Use "real" memory usage to honor --memory-limit (chalasr)
14+
* bug #31599 [Translation] Fixed issue with new vs old TranslatorInterface in TranslationDataCollector (althaus)
15+
* bug #31349 [WebProfilerBundle] Use absolute URL for profiler links (Alumbrados)
16+
* bug #31541 [DI] fix using bindings with locators of service subscribers (nicolas-grekas)
17+
* bug #31568 [Process] Fix infinite waiting for stopped process (mshavliuk)
18+
* bug #31551 [ProxyManager] isProxyCandidate() does not take into account interfaces (andrerom)
19+
* bug #31335 [Doctrine] Respect parent class contract in ContainerAwareEventManager (Koc)
20+
* bug #31421 [Routing][AnnotationClassLoader] fix utf-8 encoding in default route name (przemyslaw-bogusz)
21+
* bug #31510 Use the current working dir as default first arg in 'link' binary (lyrixx)
22+
* bug #31524 [HttpFoundation] prevent deprecation when filesize matches error code (xabbuh)
23+
* bug #31535 [Debug] Wrap call to require_once in a try/catch (lyrixx)
24+
* bug #31477 [PropertyAccess] Add missing property to PropertyAccessor (vudaltsov)
25+
* bug #31479 [Cache] fix saving unrelated keys in recursive callback calls (nicolas-grekas)
26+
* bug #31438 [Serializer] Fix denormalization of object with variadic constructor typed argument (ajgarlag)
27+
* bug #31445 [Messenger] Making cache rebuild correctly when message subscribers change (weaverryan)
28+
* bug #31442 [Validator] Fix finding translator parent definition in compiler pass (deguif)
29+
* bug #31475 [HttpFoundation] Allow set 'None' on samesite cookie flag (markitosgv)
30+
* bug #31456 Remove deprecated usage of some Twig features (fabpot)
31+
* bug #31207 [Routing] Fixed unexpected 404 NoConfigurationException (yceruto)
32+
* bug #31261 [Console] Commands with an alias should not be recognized as ambiguous when using register (Simperfit)
33+
* bug #31371 [DI] Removes number of elements information in debug mode (jschaedl)
34+
* bug #31418 [FrameworkBundle] clarify the possible class/interface of the cache (xabbuh)
35+
* bug #31411 [Intl] Fix root fallback locale (ro0NL)
36+
* bug #31377 [Console] Fix auto-complete for ChoiceQuestion (multi-select answers) (battye)
37+
* bug #31380 [WebProfilerBundle] Don't filter submitted IP values (javiereguiluz)
38+
1039
* 4.2.8 (2019-05-01)
1140

1241
* bug #31338 Revert "bug #30620 [FrameworkBundle][HttpFoundation] make session service resettable (dmaicher)" (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
private $requestStackSize = 0;
7474
private $resetServices = false;
7575

76-
const VERSION = '4.2.9-DEV';
76+
const VERSION = '4.2.9';
7777
const VERSION_ID = 40209;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 9;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

8383
const END_OF_MAINTENANCE = '07/2019';
8484
const END_OF_LIFE = '01/2020';

0 commit comments

Comments
 (0)