8000 Merge pull request #31652 from fabpot/release-4.3.0-RC1 · symfony/symfony@4e348e8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4e348e8

Browse files
authored
Merge pull request #31652 from fabpot/release-4.3.0-RC1
released v4.3.0-RC1
2 parents 59d5a77 + 70c35d3 commit 4e348e8

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG-4.3.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ in 4.3 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.3.0...v4.3.1
99

10+
* 4.3.0-RC1 (2019-05-28)
11+
12+
* bug #31650 Create an abstract HTTP transport and extend it in all HTTP transports (bocharsky-bw)
13+
* feature #31641 [HttpClient] make $response->getInfo('debug') return extended logs about the HTTP transaction (nicolas-grekas)
14+
* feature #31571 [Contracts] split in one package per sub-contracts (nicolas-grekas)
15+
* bug #31625 [Messenger] Disable the SchemaAssetsFilter when setup the transport (vincenttouzet)
16+
* bug #31621 [Messenger] Fix missing auto_setup for RedisTransport (chalasr)
17+
* bug #31584 [Workflow] Do not trigger extra guards (lyrixx)
18+
* bug #31632 [Messenger] Use "real" memory usage to honor --memory-limit (chalasr)
19+
* bug #31610 [HttpClient] fix handling exceptions thrown before first mock chunk (nicolas-grekas)
20+
* bug #31615 Allow WrappedListener to describe uncallable listeners (derrabus)
21+
* bug #31599 [Translation] Fixed issue with new vs old TranslatorInterface in TranslationDataCollector (althaus)
22+
* bug #31565 [Mime][HttpFoundation] Added mime type audio/x-hx-aac-adts (ifaridjalilov)
23+
* bug #31591 [FrameworkBundle] fix named autowiring aliases for TagAwareCacheInterface (nicolas-grekas)
24+
* bug #31590 [Cache] improve logged messages (nicolas-grekas)
25+
* bug #31586 [HttpClient] display proper error message on TransportException when curl is used (nicolas-grekas)
26+
* bug #31349 [WebProfilerBundle] Use absolute URL for profiler links (Alumbrados)
27+
* bug #31541 [DI] fix using bindings with locators of service subscribers (nicolas-grekas)
28+
* bug #31568 [Process] Fix infinite waiting for stopped process (mshavliuk)
29+
1030
* 4.3.0-BETA2 (2019-05-22)
1131

1232
* bug #31569 [HttpClient] Only use CURLMOPT_MAX_HOST_CONNECTIONS & CURL_VERSION_HTTP2 if defined (GawainLynch)

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.3.0-DEV';
76+
const VERSION = '4.3.0-RC1';
7777
const VERSION_ID = 40300;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 3;
8080
const RELEASE_VERSION = 0;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = 'RC1';
8282

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

0 commit comments

Comments
 (0)
0