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

Skip to content

Commit 3ed6f51

Browse files
authored
Merge pull request #31901 from fabpot/release-4.3.1
released v4.3.1
2 parents 495f6a3 + 31e678c commit 3ed6f51

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG-4.3.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.1 (2019-06-06)
11+
12+
* bug #31894 Fix wrong requirements for ocramius/proxy-manager in root composer.json (henrikvolmer)
13+
* bug #31865 [Form] Fix wrong DateTime on outdated ICU library (aweelex)
14+
* bug #31893 [HttpKernel] fix link to source generation (nicolas-grekas)
15+
* bug #31880 [FrameworkBundle] fix BC-breaking property in WebTestAssertionsTrait (nicolas-grekas)
16+
* bug #31881 [FramworkBundle][HttpKernel] fix KernelBrowser BC layer (nicolas-grekas)
17+
* bug #31879 [Cache] Pass arg to get callback everywhere (fancyweb)
18+
* bug #31874 [Doctrine Bridge] Check field type before adding Length constraint (belinde)
19+
* bug #31872 [Messenger] Add missing runtime check for ext redis version (chalasr)
20+
* bug #31864 [Cache] Fixed undefined variable in ArrayTrait (eXtreme)
21+
* bug #31863 [HttpFoundation] Fixed case-sensitive handling of cache-control header in RedirectResponse constructor (Ivo)
22+
* bug #31850 [HttpClient] add $response->cancel() (nicolas-grekas)
23+
* bug #31871 [HttpClient] revert bad logic around JSON_THROW_ON_ERROR (nicolas-grekas)
24+
* bug #31869 Fix json-encoding when JSON_THROW_ON_ERROR is used (nicolas-grekas)
25+
* bug #31868 [HttpKernel] Fix handling non-catchable fatal errors (nicolas-grekas)
26+
* bug #31834 [HttpClient] Don't throw InvalidArgumentException on bad Location header (nicolas-grekas)
27+
* bug #31846 [Mailer] Set default crypto method (bpolaszek)
28+
* bug #31849 [Console] Add check for Konsole/Yakuake to disable hyperlinks (belinde)
29+
* bug #31854 Rename the Symfony Mailer service implementation to avoid conflict with SwitMailer (tgalopin)
30+
* bug #31856 [VarDumper] fix dumping the cloner itself (nicolas-grekas)
31+
* bug #31861 [HttpClient] work around PHP 7.3 bug related to json_encode() (nicolas-grekas)
32+
* bug #31860 [HttpFoundation] work around PHP 7.3 bug related to json_encode() (nicolas-grekas)
33+
* bug #31852 [Form] add missing symfony/service-contracts dependency (nicolas-grekas)
34+
* bug #31836 [DoctrineBridge] do not process private properties from parent class (xabbuh)
35+
* bug #31790 [Messenger] set amqp content_type based on serialization format (Tobion)
36+
* bug #31832 [HttpClient] fix unregistering the debug buffer when using curl (nicolas-grekas)
37+
* bug #31407 [Security] added support for updated "distinguished name" format in x509 authentication (Robert Kopera)
38+
* bug #31774 [Mailer] Fix the possibility to set a From header from MessageListener (fabpot)
39+
* bug #31811 [DoctrineBridge] don't add embedded properties to wrapping class metadata (xabbuh)
40+
* bug #31786 [Translation] Fixed case sensitivity of lint:xliff command (javiereguiluz)
41+
* bug #31815 [Translator] Collect locale details earlier in the process (pierredup)
42+
* bug #31761 [TwigBridge] suggest Translation Component when TranslationExtension is used (nicolas-grekas)
43+
* bug #31748 [Messenger] Inject RoutableMessageBus instead of bus locator (chalasr)
44+
* bug #31763 [Security\Core] Make SodiumPasswordEncoder validate BCrypt-ed passwords (nicolas-grekas)
45+
* bug #31744 [Validator] Fix TimezoneValidator default option (ro0NL)
46+
* bug #31749 [DoctrineBridge][Validator] do not enable validator auto mapping by default (xabbuh)
47+
* bug #31757 [DomCrawler] Fix type error with null Form::$currentUri (chalasr)
48+
* bug #31721 [PHPUnitBridge] Use a more appropriate group when deprecating mode (greg0ire)
49+
1050
* 4.3.0 (2019-05-30)
1151

1252
* bug #31654 [HttpFoundation] Do not set X-Accel-Redirect for paths outside of X-Accel-Mapping (vilius-g)

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.1-DEV';
76+
const VERSION = '4.3.1';
7777
const VERSION_ID = 40301;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 3;
8080
const RELEASE_VERSION = 1;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

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

0 commit comments

Comments
 (0)