Socket
Socket
Sign inDemoInstall

minecraft-data

Package Overview
Dependencies
Maintainers
1
Versions
303
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minecraft-data - npm Package Compare versions

Comparing version 3.33.0 to 3.34.0

minecraft-data/.github/helper-bot/github-helper.js

4

doc/history.md
# History
## 3.34.0
* update `minecraft-data`
## 3.33.0

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

12

index.d.ts

@@ -37,6 +37,10 @@ declare namespace MinecraftData {

/**
* The type of precipitation: none, rain or snow
* The type of precipitation: none, rain or snow [before 1.19.4]
*/
precipitation: string;
precipitation?: string;
/**
* True if a biome has any precipitation (rain or snow) [1.19.4+]
*/
has_precipitation?: boolean;
/**
* The dimension of a biome: overworld, nether or end

@@ -54,5 +58,5 @@ */

/**
* How much rain there is in a biome
* How much rain there is in a biome [before 1.19.4]
*/
rainfall: number;
rainfall?: number;
[k: string]: unknown;

@@ -59,0 +63,0 @@ }

@@ -1179,2 +1179,26 @@ {

"mapIcons": "pc/1.16"
},
"1.19.4": {
"attributes": "pc/1.17",
"blocks": "pc/1.19.4",
"blockCollisionShapes": "pc/1.19.4",
"biomes": "pc/1.19.4",
"effects": "pc/1.19.4",
"items": "pc/1.19.4",
"enchantments": "pc/1.19.4",
"recipes": "pc/1.19.4",
"instruments": "pc/1.19.4",
"materials": "pc/1.19.4",
"language": "pc/1.19.4",
"entities": "pc/1.19.4",
"protocol": "pc/1.19.4",
"windows": "pc/1.16.1",
"version": "pc/1.19.4",
"foods": "pc/1.19.4",
"particles": "pc/1.19.4",
"blockLoot": "pc/1.19",
"entityLoot": "pc/1.19",
"loginPacket": "pc/1.19.2",
"tints": "pc/1.19.4",
"mapIcons": "pc/1.16"
}

@@ -1181,0 +1205,0 @@ },

@@ -719,3 +719,8 @@ [

"versions": ["1.19.3", "latest"]
},
{
"name": "hasBundlePacket",
"description": "Has a Bundle Packet to group packets for processing at once",
"versions": ["1.19.4", "latest"]
}
]

@@ -53,3 +53,4 @@ [

"1.19.2",
"1.19.3"
"1.19.3",
"1.19.4"
]

@@ -0,1 +1,4 @@

## 3.34.0
* Partially updated protocol to 1.19.4 (thqnks @extremeheat @TFBosoN @frej4189 @bradisson)
## 3.33.0

@@ -2,0 +5,0 @@ * Use node 18.

@@ -12,5 +12,6 @@ # minecraft-data

* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3)
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4)
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80
## Wrappers

@@ -17,0 +18,0 @@

@@ -29,5 +29,9 @@ {

"precipitation": {
"description": "The type of precipitation: none, rain or snow",
"description": "The type of precipitation: none, rain or snow [before 1.19.4]",
"type": "string"
},
"has_precipitation": {
"description": "True if a biome has any precipitation (rain or snow) [1.19.4+]",
"type": "boolean"
},
"dimension": {

@@ -48,3 +52,3 @@ "description": "The dimension of a biome: overworld, nether or end",

"rainfall": {
"description": "How much rain there is in a biome",
"description": "How much rain there is in a biome [before 1.19.4]",
"type": "number",

@@ -60,9 +64,7 @@ "minimum": 0,

"temperature",
"precipitation",
"dimension",
"displayName",
"color",
"rainfall"
"color"
]
}
}

@@ -9,2 +9,3 @@ {

"fix": "standard --fix",
"fixActions": "standard --fix ../../.github/helper-bot",
"pretest": "npm run lint",

@@ -11,0 +12,0 @@ "build": "node ./compileProtocol.js",

{
"name": "minecraft-data",
"version": "3.33.0",
"version": "3.34.0",
"description": "Provide easy access to minecraft data in node.js",

@@ -11,3 +11,3 @@ "main": "index.js",

"test:types": "tsc typings/test-typings && node typings/test-typings.js",
"test": "require-self && npm run generate:data && npm run lint && npm run test:types && mocha",
"test": "require-self && npm run generate:types && npm run generate:data && npm run lint && npm run test:types && mocha",
"lint": "standard",

@@ -37,3 +37,3 @@ "prepare": "require-self && npm run generate:data && npm run generate:types",

"devDependencies": {
"@types/node": "^18.0.0",
"@types/node": "^20.2.1",
"json-schema-to-typescript": "11.0.5",

@@ -44,5 +44,5 @@ "minecraft-packets": "^1.4.0",

"standard": "^17.0.0",
"typescript": "^4.0.2"
"typescript": "^5.0.4"
},
"dependencies": {}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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