1.17.40 update (#150)

* 1.17.40

* Update mcdata to 2.96.0

Co-authored-by: Romain Beaumont <romain.rom1@gmail.com>
This commit is contained in:
extremeheat 2021-11-07 06:47:45 -05:00 committed by GitHub
commit 75bf22d619
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 5 deletions

View file

@ -11,7 +11,7 @@ Minecraft Bedrock Edition (aka MCPE) protocol library, supporting authentication
## Features
- Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30
- Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40
- Parse and serialize packets as JavaScript objects
- Automatically respond to keep-alive packets
- [Proxy and mitm connections](docs/API.md#proxy-docs)

2
index.d.ts vendored
View file

@ -1,7 +1,7 @@
import EventEmitter from "events"
declare module "bedrock-protocol" {
type Version = '1.17.32' | '1.17.30' | '1.17.11' | '1.17.10' | '1.17.0' | '1.16.220' | '1.16.210' | '1.16.201'
type Version = '1.17.41' | '1.17.40' | '1.17.34' | '1.17.30' | '1.17.11' | '1.17.10' | '1.17.0' | '1.16.220' | '1.16.210' | '1.16.201'
enum title { MinecraftNintendoSwitch, MinecraftJava }

View file

@ -23,7 +23,7 @@
"debug": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"jsp-raknet": "^2.1.3",
"minecraft-data": "^2.95.0",
"minecraft-data": "^2.96.0",
"minecraft-folder-path": "^1.2.0",
"prismarine-auth": "^1.1.0",
"prismarine-nbt": "^1.5.0",

View file

@ -3,7 +3,7 @@ const mcData = require('minecraft-data')
// Minimum supported version (< will be kicked)
const MIN_VERSION = '1.16.201'
// Currently supported verson. Note, clients with newer versions can still connect as long as data is in minecraft-data
const CURRENT_VERSION = '1.17.30'
const CURRENT_VERSION = '1.17.40'
const Versions = Object.fromEntries(mcData.versions.bedrock.filter(e => e.releaseType === 'release').map(e => [e.minecraftVersion, e.version]))

View file

@ -198,7 +198,8 @@ async function requestChunks (x, z, radius) {
async function timedTest (version, timeout = 1000 * 220) {
await waitFor((res) => {
startTest(version, res)
// mocha eats up stack traces...
startTest(version, res).catch(console.error)
}, timeout, () => {
throw Error('timed out')
})