minecraft-data 3.13.0 → 3.14.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.
package/doc/history.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # History
2
2
 
3
+ ## 3.14.0
4
+
5
+ * update `minecraft-data`
6
+
3
7
  ## 3.13.0
4
8
 
5
9
  * update `minecraft-data`
@@ -1 +1,8 @@
1
- []
1
+ [
2
+ {
3
+ "name": "newRecipeSchema",
4
+ "description": "New recipe schema",
5
+ "versions": ["1.16_major", "latest"]
6
+ }
7
+ ]
8
+
@@ -57,7 +57,12 @@
57
57
  {
58
58
  "name": "dimensionDataIsAvailable",
59
59
  "description": "dimensionData is available, providing an additional information about the current dimension",
60
- "versions": ["1.17", "1.19"]
60
+ "versions": ["1.17", "1.18.2"]
61
+ },
62
+ {
63
+ "name": "dimensionDataInCodec",
64
+ "description": "dimensionData like world height is exclusively in the codec in login packet",
65
+ "versions": ["1.19", "latest"]
61
66
  },
62
67
  {
63
68
  "name": "useItemWithBlockPlace",
@@ -446,5 +451,10 @@
446
451
  "name": "signatureEncryption",
447
452
  "description": "allows for usage of `signature` instead of verifyToken in serverbound packet_encryption_begin",
448
453
  "versions": ["1.19_major", "latest"]
454
+ },
455
+ {
456
+ "name": "clientboundChatHasSender",
457
+ "description": "clientbound chat packet contains message sender's UUID",
458
+ "versions": ["1.16_major", "latest"]
449
459
  }
450
460
  ]
@@ -1,4 +1,10 @@
1
+ ## 3.14.0
2
+
3
+ * update 1.19 features list (@extremeheat)
4
+ * Add features.json for bedrock (@extremeheat)
5
+
1
6
  ## 3.13.0
7
+
2
8
  * bedrock : add protocol data for 1.19.30 (@stevarino)
3
9
  * pc : Fix login packet structure in 1.19 (#632) @mkorman9
4
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.13.0",
3
+ "version": "3.14.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",