8000 Release v4.3.1 by fabpot · Pull Request #31901 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v4.3.1 #31901

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions CHANGELOG-4.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,46 @@ in 4.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.3.0...v4.3.1

* 4.3.1 (2019-06-06)

* bug #31894 Fix wrong requirements for ocramius/proxy-manager in root composer.json (henrikvolmer)
* bug #31865 [Form] Fix wrong DateTime on outdated ICU library (aweelex)
* bug #31893 [HttpKernel] fix link to source generation (nicolas-grekas)
* bug #31880 [FrameworkBundle] fix BC-breaking property in WebTestAssertionsTrait (nicolas-grekas)
* bug #31881 [FramworkBundle][HttpKernel] fix KernelBrowser BC layer (nicolas-grekas)
* bug #31879 [Cache] Pass arg to get callback everywhere (fancyweb)
* bug #31874 [Doctrine Bridge] Check field type before adding Length constraint (belinde)
* bug #31872 [Messenger] Add missing runtime check for ext redis version (chalasr)
* bug #31864 [Cache] Fixed undefined variable in ArrayTrait (eXtreme)
* bug #31863 [HttpFoundation] Fixed case-sensitive handling of cache-control header in RedirectResponse constructor (Ivo)
* bug #31850 [HttpClient] add $response->cancel() (nicolas-grekas)
* bug #31871 [HttpClient] revert bad logic around JSON_THROW_ON_ERROR (nicolas-grekas)
* bug #31869 Fix json-encoding when JSON_THROW_ON_ERROR is used (nicolas-grekas)
* bug #31868 [HttpKernel] Fix handling non-catchable fatal errors (nicolas-grekas)
* bug #31834 [HttpClient] Don't throw InvalidArgumentException on bad Location header (nicolas-grekas)
* bug #31846 [Mailer] Set default crypto method (bpolaszek)
* bug #31849 [Console] Add check for Konsole/Yakuake to disabl 8000 e hyperlinks (belinde)
* bug #31854 Rename the Symfony Mailer service implementation to avoid conflict with SwitMailer (tgalopin)
* bug #31856 [VarDumper] fix dumping the cloner itself (nicolas-grekas)
* bug #31861 [HttpClient] work around PHP 7.3 bug related to json_encode() (nicolas-grekas)
* bug #31860 [HttpFoundation] work around PHP 7.3 bug related to json_encode() (nicolas-grekas)
* bug #31852 [Form] add missing symfony/service-contracts dependency (nicolas-grekas)
* bug #31836 [DoctrineBridge] do not process private properties from parent class (xabbuh)
* bug #31790 [Messenger] set amqp content_type based on serialization format (Tobion)
* bug #31832 [HttpClient] fix unregistering the debug buffer when using curl (nicolas-grekas)
* bug #31407 [Security] added support for updated "distinguished name" format in x509 authentication (Robert Kopera)
* bug #31774 [Mailer] Fix the possibility to set a From header from MessageListener (fabpot)
* bug #31811 [DoctrineBridge] don't add embedded properties to wrapping class metadata (xabbuh)
* bug #31786 [Translation] Fixed case sensitivity of lint:xliff command (javiereguiluz)
* bug #31815 [Translator] Collect locale details earlier in the process (pierredup)
* bug #31761 [TwigBridge] suggest Translation Component when TranslationExtension is used (nicolas-grekas)
* bug #31748 [Messenger] Inject RoutableMessageBus instead of bus locator (chalasr)
* bug #31763 [Security\Core] Make SodiumPasswordEncoder validate BCrypt-ed passwords (nicolas-grekas)
* bug #31744 [Validator] Fix TimezoneValidator default option (ro0NL)
* bug #31749 [DoctrineBridge][Validator] do not enable validator auto mapping by default (xabbuh)
* bug #31757 [DomCrawler] Fix type error with null Form::$currentUri (chalasr)
* bug #31721 [PHPUnitBridge] Use a more appropriate group when deprecating mode (greg0ire)

* 4.3.0 (2019-05-30)

* bug #31654 [HttpFoundation] Do not set X-Accel-Redirect for paths outside of X-Accel-Mapping (vilius-g)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $req 60BD uestStackSize = 0;
private $resetServices = false;

const VERSION = '4.3.1-DEV';
const VERSION = '4.3.1';
const VERSION_ID = 40301;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 3;
const RELEASE_VERSION = 1;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '01/2020';
const END_OF_LIFE = '07/2020';
Expand Down
0