minecraft-data 3.92.0 → 3.94.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/data.js +33 -11
  2. package/doc/history.md +8 -0
  3. package/index.d.ts +3 -0
  4. package/minecraft-data/README.md +1 -1
  5. package/minecraft-data/data/bedrock/1.21.80/blocksB2J.json +9913 -0
  6. package/minecraft-data/data/bedrock/1.21.80/blocksJ2B.json +27916 -0
  7. package/minecraft-data/data/bedrock/1.21.90/blockCollisionShapes.json +1588 -0
  8. package/minecraft-data/data/bedrock/1.21.90/blocks.json +22765 -0
  9. package/minecraft-data/data/bedrock/1.21.90/items.json +11957 -0
  10. package/minecraft-data/data/bedrock/1.21.90/proto.yml +4600 -0
  11. package/minecraft-data/data/bedrock/1.21.90/types.yml +2806 -0
  12. package/minecraft-data/data/bedrock/1.21.93/protocol.json +14314 -0
  13. package/minecraft-data/data/bedrock/1.21.93/version.json +6 -0
  14. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  15. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  16. package/minecraft-data/data/bedrock/latest/proto.yml +1 -1
  17. package/minecraft-data/data/dataPaths.json +33 -11
  18. package/minecraft-data/data/pc/1.21.3/proto.yml +1 -1
  19. package/minecraft-data/data/pc/1.21.3/protocol.json +1 -1
  20. package/minecraft-data/data/pc/1.21.4/materials.json +45 -45
  21. package/minecraft-data/data/pc/1.21.4/proto.yml +3242 -0
  22. package/minecraft-data/data/pc/1.21.4/protocol.json +3 -9
  23. package/minecraft-data/data/pc/1.21.5/entities.json +2816 -176
  24. package/minecraft-data/data/pc/1.21.5/protocol.json +9850 -0
  25. package/minecraft-data/data/pc/common/features.json +5 -0
  26. package/minecraft-data/data/pc/common/protocolVersions.json +24 -0
  27. package/minecraft-data/data/pc/latest/proto.yml +307 -170
  28. package/minecraft-data/doc/history.md +12 -0
  29. package/package.json +2 -2
@@ -1,3 +1,15 @@
1
+ ## 3.94.0
2
+ * [Add pc 1.21.5 protocol data (#1029)](https://github.com/PrismarineJS/minecraft-data/commit/6d6e431dd22cd9d0fb9e8c5b7029f6f1311f7501) (thanks @extremeheat)
3
+ * [Add 25w31a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/60bc124b73d6daa12e80179e963aa93a80a40d45) (thanks @github-actions[bot])
4
+ * [Add bedrock 1.21.90 data (#1027)](https://github.com/PrismarineJS/minecraft-data/commit/e72f74ee618659bbbb15bfa97ae1c5fb194b4ad6) (thanks @bedrock-bot)
5
+ * [Add 1.21.8 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/05369ec2ec1f1f927359e9c4e90c8346111ac1a8) (thanks @github-actions[bot])
6
+ * [Add 1.21.8-rc1 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/a333d737118f65f6161ebdd353b36481d168b5fd) (thanks @github-actions[bot])
7
+
8
+ ## 3.93.0
9
+ * [Add bedrock v1.21.93 to versions (#1032)](https://github.com/PrismarineJS/minecraft-data/commit/015c1c53fd4595c2226f729cb019d53514c91c32) (thanks @CreeperG16)
10
+ * [manually update some of 1.21.4 materials.json (#1033)](https://github.com/PrismarineJS/minecraft-data/commit/8dcb6a1b09777ef34a8db8dde879d2a65de4e65c) (thanks @Gjum)
11
+ * [fix: typo in SlotDisplay `smithing_trim` (#1031)](https://github.com/PrismarineJS/minecraft-data/commit/8071a1626422ddd3e9a8ab971edd9337f7b6d702) (thanks @patyhank)
12
+
1
13
  ## 3.92.0
2
14
  * [PC protocol updates and refactor (#948)](https://github.com/PrismarineJS/minecraft-data/commit/1a0bb5380450a3b1559af47b48fb9be772531741) (thanks @extremeheat)
3
15
  * [add 1.21.6 data (#1028)](https://github.com/PrismarineJS/minecraft-data/commit/724b1b1d1de57b2b4e4da42a6cf9a5bd2bbd4cae) (thanks @bedrock-bot)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.92.0",
3
+ "version": "3.94.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",
@@ -39,7 +39,7 @@
39
39
  "minecraft-packets": "^1.4.0",
40
40
  "mocha": "^11.0.1",
41
41
  "standard": "^17.0.0",
42
- "typescript": "~5.8.3"
42
+ "typescript": "~5.9.2"
43
43
  },
44
44
  "dependencies": {}
45
45
  }