This commit is contained in:
Dylan T. 2025-04-06 04:52:15 +01:00 committed by GitHub
parent e88b81a4cb
commit 6f3851be80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 11 deletions

View File

@ -16,3 +16,9 @@ If you're upgrading from 5.25.x directly to 5.27.0, please also read the followi
## General ## General
- Aded support for Minecraft: Bedrock Edition 1.21.70. - Aded support for Minecraft: Bedrock Edition 1.21.70.
- Removed support for earlier versions. - Removed support for earlier versions.
# 5.27.1
Released 6th April 2025.
## Fixes
- Updated RakLib to get ping timestamp handling fixes.

View File

@ -45,7 +45,7 @@
"pocketmine/log": "^0.4.0", "pocketmine/log": "^0.4.0",
"pocketmine/math": "~1.0.0", "pocketmine/math": "~1.0.0",
"pocketmine/nbt": "~1.1.0", "pocketmine/nbt": "~1.1.0",
"pocketmine/raklib": "~1.1.0", "pocketmine/raklib": "~1.1.2",
"pocketmine/raklib-ipc": "~1.0.0", "pocketmine/raklib-ipc": "~1.0.0",
"pocketmine/snooze": "^0.5.0", "pocketmine/snooze": "^0.5.0",
"ramsey/uuid": "~4.7.0", "ramsey/uuid": "~4.7.0",

18
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "28b4de9a23a293646dbad2707cdfd9e0", "content-hash": "8d3061c5cc77e5b1dfa1fcf77f5146c6",
"packages": [ "packages": [
{ {
"name": "adhocore/json-comment", "name": "adhocore/json-comment",
@ -618,16 +618,16 @@
}, },
{ {
"name": "pocketmine/raklib", "name": "pocketmine/raklib",
"version": "1.1.1", "version": "1.1.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/pmmp/RakLib.git", "url": "https://github.com/pmmp/RakLib.git",
"reference": "be2783be516bf6e2872ff5c81fb9048596617b97" "reference": "4145a31cd812fe8931c3c9c691fcd2ded2f47e7f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/pmmp/RakLib/zipball/be2783be516bf6e2872ff5c81fb9048596617b97", "url": "https://api.github.com/repos/pmmp/RakLib/zipball/4145a31cd812fe8931c3c9c691fcd2ded2f47e7f",
"reference": "be2783be516bf6e2872ff5c81fb9048596617b97", "reference": "4145a31cd812fe8931c3c9c691fcd2ded2f47e7f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -639,8 +639,8 @@
"pocketmine/log": "^0.3.0 || ^0.4.0" "pocketmine/log": "^0.3.0 || ^0.4.0"
}, },
"require-dev": { "require-dev": {
"phpstan/phpstan": "1.10.1", "phpstan/phpstan": "2.1.0",
"phpstan/phpstan-strict-rules": "^1.0" "phpstan/phpstan-strict-rules": "^2.0"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
@ -655,9 +655,9 @@
"description": "A RakNet server implementation written in PHP", "description": "A RakNet server implementation written in PHP",
"support": { "support": {
"issues": "https://github.com/pmmp/RakLib/issues", "issues": "https://github.com/pmmp/RakLib/issues",
"source": "https://github.com/pmmp/RakLib/tree/1.1.1" "source": "https://github.com/pmmp/RakLib/tree/1.1.2"
}, },
"time": "2024-03-04T14:02:14+00:00" "time": "2025-04-06T03:38:21+00:00"
}, },
{ {
"name": "pocketmine/raklib-ipc", "name": "pocketmine/raklib-ipc",

View File

@ -32,7 +32,7 @@ use function str_repeat;
final class VersionInfo{ final class VersionInfo{
public const NAME = "PocketMine-MP"; public const NAME = "PocketMine-MP";
public const BASE_VERSION = "5.27.1"; public const BASE_VERSION = "5.27.1";
public const IS_DEVELOPMENT_BUILD = true; public const IS_DEVELOPMENT_BUILD = false;
public const BUILD_CHANNEL = "stable"; public const BUILD_CHANNEL = "stable";
/** /**