Skip to content

Commit 7f74681

Browse files
dktappsdries-c
authored andcommitted
Bedrock 1.21.111 (pmmp#6824)
Co-authored-by: Dries C <15795262+dries-c@users.noreply.github.com>
1 parent 0efee5c commit 7f74681

File tree

12 files changed

+1758
-51
lines changed

12 files changed

+1758
-51
lines changed

changelogs/5.35.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# 5.35.0
2+
Released 3rd October 2025.
3+
4+
This is a support release for Minecraft: Bedrock Edition 1.21.111.
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+
## Interim releases
13+
If you're upgrading from 5.32.x directly to 5.35.0, please also read the following changelogs, as the interim releases contain important changes:
14+
- [5.33.0](https://github.com/pmmp/PocketMine-MP/blob/5.35.0/changelogs/5.33.md) - internals improvements, API improvements and new gameplay features
15+
- [5.34.0](https://github.com/pmmp/PocketMine-MP/blob/5.35.0/changelogs/5.34.md) - significant performance improvements, new gameplay features, new API additions and network changes
16+
17+
Please also note that an updated PHP binary is required due to changes introduced in 5.34.0 (initial `ext-encoding` integration).
18+
19+
## General
20+
- Added support for Minecraft: Bedrock Edition 1.21.111 (@dries-c).
21+
- Removed support for earlier versions.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
"composer-runtime-api": "^2.0",
3434
"adhocore/json-comment": "~1.2.0",
3535
"netresearch/jsonmapper": "~v5.0.0",
36-
"pocketmine/bedrock-block-upgrade-schema": "~5.1.0+bedrock-1.21.60",
37-
"pocketmine/bedrock-data": "~5.3.0+bedrock-1.21.100",
38-
"pocketmine/bedrock-item-upgrade-schema": "~1.15.0+bedrock-1.21.100",
39-
"pocketmine/bedrock-protocol": "~40.0.0+bedrock-1.21.100",
36+
"pocketmine/bedrock-block-upgrade-schema": "~5.2.0+bedrock-1.21.110",
37+
"pocketmine/bedrock-data": "~6.1.0+bedrock-1.21.111",
38+
"pocketmine/bedrock-item-upgrade-schema": "~1.16.0+bedrock-1.21.110",
39+
"pocketmine/bedrock-protocol": "~51.1.0+bedrock-1.21.111",
4040
"pocketmine/binaryutils": "^0.2.1",
4141
"pocketmine/callback-validator": "^1.0.2",
4242
"pocketmine/color": "^0.3.0",

composer.lock

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

src/VersionInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
final class VersionInfo{
3333
public const NAME = "PocketMine-MP";
34-
public const BASE_VERSION = "5.110.1";
34+
public const BASE_VERSION = "5.111.0";
3535
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737

src/data/bedrock/block/BlockStateNames.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ private function __construct(){
109109
public const PILLAR_AXIS = "pillar_axis";
110110
public const PORTAL_AXIS = "portal_axis";
111111
public const POWERED_BIT = "powered_bit";
112+
public const POWERED_SHELF_TYPE = "powered_shelf_type";
112113
public const PROPAGULE_STAGE = "propagule_stage";
113114
public const RAIL_DATA_BIT = "rail_data_bit";
114115
public const RAIL_DIRECTION = "rail_direction";

0 commit comments

Comments
 (0)