Skip to content

Commit 09fa9ee

Browse files
authored
Bedrock 1.26.10 (#7028)
1 parent e73f846 commit 09fa9ee

5 files changed

Lines changed: 32 additions & 17 deletions

File tree

changelogs/5.42.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# 5.42.0
2+
Released 25th March 2026.
3+
4+
This is a support release for Minecraft: Bedrock Edition 1.26.10 (display version 26.10).
5+
6+
**Plugin compatibility:** Plugins for previous 5.x versions will run unchanged on this release, unless they use internal APIs, reflection, or packages like the `pocketmine\network\mcpe` or `pocketmine\data` namespace.
7+
Do not update plugin minimum API versions unless you need new features added in this release.
8+
9+
**WARNING: If your plugin uses the `pocketmine\network\mcpe` namespace, you're not shielded by API change constraints.**
10+
Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you're using packets directly.
11+
12+
## General
13+
- Added support for Minecraft: Bedrock Edition 1.26.10 (display version 26.10). (@dries-c)
14+
- Removed support for earlier versions.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"adhocore/json-comment": "~1.2.0",
3636
"netresearch/jsonmapper": "~v5.0.0",
3737
"pocketmine/bedrock-block-upgrade-schema": "~5.2.0+bedrock-1.21.110",
38-
"pocketmine/bedrock-data": "~6.4.0+bedrock-1.26.0",
38+
"pocketmine/bedrock-data": "~6.5.0+bedrock-1.26.10",
3939
"pocketmine/bedrock-item-upgrade-schema": "~1.16.0+bedrock-1.21.110",
40-
"pocketmine/bedrock-protocol": "~55.0.0+bedrock-1.26.0",
40+
"pocketmine/bedrock-protocol": "~56.0.0+bedrock-1.26.10",
4141
"pocketmine/binaryutils": "^0.2.1",
4242
"pocketmine/callback-validator": "~1.0.4",
4343
"pocketmine/color": "^0.3.0",

composer.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/data/bedrock/block/BlockTypeNames.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ private function __construct(){
584584
public const GLOWSTONE = "minecraft:glowstone";
585585
public const GOLD_BLOCK = "minecraft:gold_block";
586586
public const GOLD_ORE = "minecraft:gold_ore";
587+
public const GOLDEN_DANDELION = "minecraft:golden_dandelion";
587588
public const GOLDEN_RAIL = "minecraft:golden_rail";
588589
public const GRANITE = "minecraft:granite";
589590
public const GRANITE_DOUBLE_SLAB = "minecraft:granite_double_slab";

src/VersionInfo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
final class VersionInfo{
3333
public const NAME = "PocketMine-MP";
34-
public const BASE_VERSION = "5.41.2";
35-
public const IS_DEVELOPMENT_BUILD = true;
34+
public const BASE_VERSION = "5.42.0";
35+
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737
public const GITHUB_URL = "https://github.com/pmmp/PocketMine-MP";
3838

0 commit comments

Comments
 (0)