From 9dc2a01c2e2147b189175484bd39ef1002f6745c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 16 May 2022 17:50:29 +0100 Subject: [PATCH] Release 4.3.3 --- changelogs/4.3.md | 13 +++++++++++++ src/VersionInfo.php | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/changelogs/4.3.md b/changelogs/4.3.md index b5ebafe52..b7149c752 100644 --- a/changelogs/4.3.md +++ b/changelogs/4.3.md @@ -30,3 +30,16 @@ Released 10th May 2022. ## Documentation - Added more documentation in the template `pocketmine.yml` for the `aliases` config section. - Removed useless doc comment in `PlayerChangeSkinEvent`. + +# 4.3.3 +Released 16th May 2022. + +## General +- Improved display of parameters in exception stack trace logs. +- Exception stack traces now include names for dynamic named arguments (i.e. arguments that don't match any parameter of the function), if any were given. + - Note: Named arguments which do match parameters are not shown this way, since PHP reduces them to positional arguments for performance reasons. + +## Fixes +- Fixed server crash when chunks are unloaded during chunk generation callbacks +- Fixed dead coral fan items placing coral fans in the wrong orientation. +- Fixed max stack size of boat items. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 855619bb6..684c081ec 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.3.3"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){