New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

minecraft-protocol

Package Overview
Dependencies
Maintainers
7
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minecraft-protocol - npm Package Compare versions

Comparing version 1.24.2 to 1.25.0

examples/compiler_parse_buffer/index.js

4

docs/HISTORY.md
# History
## 1.25.0
* add fullBuffer to packet event
## 1.24.2

@@ -4,0 +8,0 @@

6

package.json
{
"name": "minecraft-protocol",
"version": "1.24.2",
"version": "1.25.0",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",

@@ -13,3 +13,4 @@ "main": "src/index.js",

"prepare": "npm install require-self && require-self",
"test": "mocha --recursive --reporter spec --exit",
"test": "mocha --recursive --reporter spec --exit -i -g \"Test version\"",
"test-non-par": "mocha --recursive --reporter spec --exit -g \"Test version\"",
"lint": "standard",

@@ -40,2 +41,3 @@ "fix": "standard --fix",

"intelli-espower-loader": "^1.0.0",
"minecraft-packets": "^1.1.5",
"minecraft-wrap": "^1.2.3",

@@ -42,0 +44,0 @@ "mocha": "^8.0.1",

@@ -90,3 +90,3 @@ 'use strict'

}
this.emit('packet', parsed.data, parsed.metadata, parsed.buffer)
this.emit('packet', parsed.data, parsed.metadata, parsed.buffer, parsed.fullBuffer)
this.emit(parsed.metadata.name, parsed.data, parsed.metadata)

@@ -93,0 +93,0 @@ this.emit('raw.' + parsed.metadata.name, parsed.buffer, parsed.metadata)

@@ -53,2 +53,3 @@ /// <reference types="node" />

auth?: 'mojang' | 'microsoft'
id?: number
}

@@ -107,3 +108,3 @@

interface ClientsMap {
[key: string]: Client
[key: number]: Client
}

@@ -110,0 +111,0 @@

'use strict'
module.exports = {
defaultVersion: '1.16.4',
supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.4']
defaultVersion: '1.16.5',
supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5']
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc