From dc1b5a92857d58facf17e06525b30e52c780816d Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 29 Mar 2023 23:46:28 +0100 Subject: [PATCH 1/2] it might help if we actually included the fix --- composer.json | 2 +- composer.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 4f7afd148..1bc3c5370 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,7 @@ "pocketmine/bedrock-block-upgrade-schema": "~1.1.1+bedrock-1.19.70", "pocketmine/bedrock-data": "~2.1.1+bedrock-1.19.70", "pocketmine/bedrock-item-upgrade-schema": "~1.1.0+bedrock-1.19.70", - "pocketmine/bedrock-protocol": "~20.0.0+bedrock-1.19.70", + "pocketmine/bedrock-protocol": "~20.1.1+bedrock-1.19.70", "pocketmine/binaryutils": "^0.2.1", "pocketmine/callback-validator": "^1.0.2", "pocketmine/classloader": "^0.2.0", diff --git a/composer.lock b/composer.lock index 3305ea5b1..8ee6f71cb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7c02da0a4bfc5f59effdf8e55b085c08", + "content-hash": "7c779ace575b5ef662eb5a6b0f173418", "packages": [ { "name": "adhocore/json-comment", @@ -328,16 +328,16 @@ }, { "name": "pocketmine/bedrock-protocol", - "version": "20.0.0+bedrock-1.19.70", + "version": "20.1.1+bedrock-1.19.70", "source": { "type": "git", "url": "https://github.com/pmmp/BedrockProtocol.git", - "reference": "4892a5020187da805d7b46ab522d8185b0283726" + "reference": "455dbad93d29b4489b60910a41e38b8007b26563" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pmmp/BedrockProtocol/zipball/4892a5020187da805d7b46ab522d8185b0283726", - "reference": "4892a5020187da805d7b46ab522d8185b0283726", + "url": "https://api.github.com/repos/pmmp/BedrockProtocol/zipball/455dbad93d29b4489b60910a41e38b8007b26563", + "reference": "455dbad93d29b4489b60910a41e38b8007b26563", "shasum": "" }, "require": { @@ -351,7 +351,7 @@ "ramsey/uuid": "^4.1" }, "require-dev": { - "phpstan/phpstan": "1.10.1", + "phpstan/phpstan": "1.10.7", "phpstan/phpstan-phpunit": "^1.0.0", "phpstan/phpstan-strict-rules": "^1.0.0", "phpunit/phpunit": "^9.5" @@ -369,9 +369,9 @@ "description": "An implementation of the Minecraft: Bedrock Edition protocol in PHP", "support": { "issues": "https://github.com/pmmp/BedrockProtocol/issues", - "source": "https://github.com/pmmp/BedrockProtocol/tree/20.0.0+bedrock-1.19.70" + "source": "https://github.com/pmmp/BedrockProtocol/tree/20.1.1+bedrock-1.19.70" }, - "time": "2023-03-14T17:06:38+00:00" + "time": "2023-03-29T22:38:17+00:00" }, { "name": "pocketmine/binaryutils", From 9e8c0a6beabf1fac7c81b1f9687ed998a630a5ca Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 29 Mar 2023 23:47:49 +0100 Subject: [PATCH 2/2] Release 4.17.2 --- changelogs/4.17.md | 6 ++++++ src/VersionInfo.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelogs/4.17.md b/changelogs/4.17.md index 58669cc25..aa50ccd5a 100644 --- a/changelogs/4.17.md +++ b/changelogs/4.17.md @@ -31,3 +31,9 @@ Released 22nd March 2023. - Added version-specific channels to `update.pmmp.io`, such as `4`, `4.18-beta`, `4.17`, etc. - Replaced deprecated `::set-output` commands in GitHub Actions workflows. - `build/make-release.php` no longer automatically pushes changes, to avoid accidents when testing release workflows on forks. + +# 4.17.2 +Released 29th March 2023. + +## Fixes +- Fixed players being unable to join due to the appearance of a new `x5t` field in the JWT header of Xbox Live authentication tokens. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 0a9abc9f8..22b95e3f5 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -31,7 +31,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; - public const BASE_VERSION = "4.17.1"; + public const BASE_VERSION = "4.17.2"; public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable";