minecraft-data 3.44.0 → 3.45.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.
@@ -1,4 +1,9 @@
1
1
  [
2
+ {
3
+ "name": "usesPalettedChunks",
4
+ "description": "the chunk format uses local palettes",
5
+ "versions": ["1.9", "latest"]
6
+ },
2
7
  {
3
8
  "name": "mobSpawner",
4
9
  "description": "spawner is called mob_spawner",
@@ -534,13 +539,18 @@
534
539
  {
535
540
  "name": "lightSentSeparately",
536
541
  "description": "chunk light data is sent in a separate packet",
537
- "versions": ["1.14", "1.16"]
542
+ "versions": ["1.14", "latest"]
538
543
  },
539
544
  {
540
545
  "name": "difficultySentSeparately",
541
546
  "description": "game difficulty is sent separately from the login packet",
542
547
  "versions": ["1.14", "1.16"]
543
548
  },
549
+ {
550
+ "name": "biomesSentSeparately",
551
+ "description": "biomes sent in own packet",
552
+ "versions": ["1.15", "1.17_major"]
553
+ },
544
554
  {
545
555
  "name": "acknowledgePlayerDigging",
546
556
  "description": "player digging packets should be responded to",
@@ -766,5 +776,10 @@
766
776
  "name": "explicitMaxDurability",
767
777
  "description": "Items with maximum durability have explicit NBT data Damage:0",
768
778
  "versions": ["1.15_major", "latest"]
779
+ },
780
+ {
781
+ "name": "newLightingDataFormat",
782
+ "description": "in 1.17, light encoding changed to handle new world height",
783
+ "versions": ["1.17", "latest"]
769
784
  }
770
785
  ]
@@ -1,4 +1,20 @@
1
1
  [
2
+ {
3
+ "minecraftVersion": "23w35a",
4
+ "version": 1073741971,
5
+ "dataVersion": 3571,
6
+ "usesNetty": true,
7
+ "majorVersion": "23w35a",
8
+ "releaseType": "snapshot"
9
+ },
10
+ {
11
+ "minecraftVersion": "23w33a",
12
+ "version": 1073741970,
13
+ "dataVersion": 3570,
14
+ "usesNetty": true,
15
+ "majorVersion": "23w33a",
16
+ "releaseType": "snapshot"
17
+ },
2
18
  {
3
19
  "minecraftVersion": "1.20.1",
4
20
  "version": 763,
@@ -1,3 +1,8 @@
1
+ ## 3.45.0
2
+ * [add features for prismarine chunk (#763)](https://github.com/PrismarineJS/minecraft-data/commit/1b9380edb159721bef2342d4214b0ebb3128c812) (thanks @extremeheat)
3
+ * [1.20 block data fixes (#766)](https://github.com/PrismarineJS/minecraft-data/commit/b130830580ea0cc5551cd736bdc139ac79d3eba7) (thanks @MathiasElgaard)
4
+ * [Handle snapshots in update checking workflow (#767)](https://github.com/PrismarineJS/minecraft-data/commit/b5037850d0f3abf77b2197535b042e23d012aad6) (thanks @extremeheat)
5
+
1
6
  ## 3.44.0
2
7
  * [Elytra support (#761)](https://github.com/PrismarineJS/minecraft-data/commit/72a267757b8fbb8462f3c3f25001754af9d1f7c4) (thanks @lkwilson)
3
8
  * [Bedrock stack and request network id fix for 1.16.220 to 1.20.10 (#762)](https://github.com/PrismarineJS/minecraft-data/commit/7f144de36862de3dfe16b8b6272fcbd286327e16) (thanks @irkmandeer)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.44.0",
3
+ "version": "3.45.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",