From 08678c5dd9131f6911c7e00e6a225ae38f0ad1cf Mon Sep 17 00:00:00 2001 From: LeeGodSRC Date: Mon, 30 Jun 2025 15:38:36 +0800 Subject: [PATCH 1/4] feat: update dependencies for Minecraft 1.21.6 support - Bump XSeries from 13.2.0 to 13.3.2 - Update PacketEvents from 2.8.0 to 2.9.0-SNAPSHOT - Upgrade Adventure API from 4.21.0 to 4.23.0 - Update item-nbt-api from 2.15.0 to 2.15.1-SNAPSHOT --- .../modules/bukkit/bukkit-nbt/build.gradle.kts | 2 +- .../bukkit/bukkit-xseries/build.gradle.kts | 2 +- .../platforms/bukkit-platform/build.gradle.kts | 2 +- framework/platforms/mc-platform/build.gradle.kts | 16 ++++++++-------- global.properties | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/framework/modules/bukkit/bukkit-nbt/build.gradle.kts b/framework/modules/bukkit/bukkit-nbt/build.gradle.kts index 62441a8c..ee438e34 100644 --- a/framework/modules/bukkit/bukkit-nbt/build.gradle.kts +++ b/framework/modules/bukkit/bukkit-nbt/build.gradle.kts @@ -3,5 +3,5 @@ plugins { } dependencies { - implementation("de.tr7zw:item-nbt-api:2.15.0") + implementation("de.tr7zw:item-nbt-api:2.15.1-SNAPSHOT") } \ No newline at end of file diff --git a/framework/modules/bukkit/bukkit-xseries/build.gradle.kts b/framework/modules/bukkit/bukkit-xseries/build.gradle.kts index c4268ca2..62d5190b 100644 --- a/framework/modules/bukkit/bukkit-xseries/build.gradle.kts +++ b/framework/modules/bukkit/bukkit-xseries/build.gradle.kts @@ -6,7 +6,7 @@ dependencies { compileOnly("org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT") api("io.fairyproject:core-command") - api("com.github.cryptomorin:XSeries:13.2.0") + api("com.github.cryptomorin:XSeries:13.3.2") implementation("com.google.code.findbugs:jsr305:3.0.2") } diff --git a/framework/platforms/bukkit-platform/build.gradle.kts b/framework/platforms/bukkit-platform/build.gradle.kts index 7283f011..4c883823 100644 --- a/framework/platforms/bukkit-platform/build.gradle.kts +++ b/framework/platforms/bukkit-platform/build.gradle.kts @@ -6,7 +6,7 @@ dependencies { api(project(":mc-platform")) api("net.kyori:adventure-platform-bukkit:4.4.0") api("net.kyori:adventure-text-serializer-bungeecord:4.4.0") - api("com.github.retrooper:packetevents-spigot:2.8.0") { + api("com.github.retrooper:packetevents-spigot:2.9.0-SNAPSHOT") { exclude(group = "net.kyori") } compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT") { diff --git a/framework/platforms/mc-platform/build.gradle.kts b/framework/platforms/mc-platform/build.gradle.kts index 771d3948..8475064e 100644 --- a/framework/platforms/mc-platform/build.gradle.kts +++ b/framework/platforms/mc-platform/build.gradle.kts @@ -7,15 +7,15 @@ dependencies { compileOnly("io.netty:netty-all:4.1.100.Final") // Adventure, for user-interface - api("net.kyori:adventure-api:4.21.0") - api("net.kyori:adventure-text-serializer-gson:4.21.0") - api("net.kyori:adventure-text-serializer-legacy:4.21.0") - api("net.kyori:adventure-nbt:4.21.0") - api("net.kyori:adventure-text-minimessage:4.21.0") - api("net.kyori:adventure-text-serializer-gson-legacy-impl:4.21.0") - api("net.kyori:adventure-text-serializer-plain:4.21.0") + api("net.kyori:adventure-api:4.23.0") + api("net.kyori:adventure-text-serializer-gson:4.23.0") + api("net.kyori:adventure-text-serializer-legacy:4.23.0") + api("net.kyori:adventure-nbt:4.23.0") + api("net.kyori:adventure-text-minimessage:4.23.0") + api("net.kyori:adventure-text-serializer-gson-legacy-impl:4.23.0") + api("net.kyori:adventure-text-serializer-plain:4.23.0") - api("com.github.retrooper:packetevents-api:2.8.0") { + api("com.github.retrooper:packetevents-api:2.9.0-SNAPSHOT") { exclude(group = "net.kyori") } diff --git a/global.properties b/global.properties index 7921b093..30fa050b 100644 --- a/global.properties +++ b/global.properties @@ -1 +1 @@ -version = 0.8b4-SNAPSHOT \ No newline at end of file +version = 0.8.1b1-SNAPSHOT \ No newline at end of file From 78d7b9eda255d663b25c626818b79cbb3f52fed6 Mon Sep 17 00:00:00 2001 From: LeeGodSRC Date: Thu, 3 Jul 2025 18:34:08 +0800 Subject: [PATCH 2/4] build: update item-nbt-api to 2.15.1 stable release (#1.21.6) --- framework/modules/bukkit/bukkit-nbt/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/modules/bukkit/bukkit-nbt/build.gradle.kts b/framework/modules/bukkit/bukkit-nbt/build.gradle.kts index ee438e34..e91fd9d7 100644 --- a/framework/modules/bukkit/bukkit-nbt/build.gradle.kts +++ b/framework/modules/bukkit/bukkit-nbt/build.gradle.kts @@ -3,5 +3,5 @@ plugins { } dependencies { - implementation("de.tr7zw:item-nbt-api:2.15.1-SNAPSHOT") + implementation("de.tr7zw:item-nbt-api:2.15.1") } \ No newline at end of file From c322be884309f35447a8cb6ab76f083c73547160 Mon Sep 17 00:00:00 2001 From: LeeGodSRC Date: Thu, 10 Jul 2025 15:34:52 +0800 Subject: [PATCH 3/4] build: update XSeries and PacketEvents dependencies (#1.21.6) - Update XSeries from 13.3.2 to 13.3.3 - Update PacketEvents API from 2.9.0-SNAPSHOT to 2.9.1 - Update PacketEvents Spigot from 2.9.0-SNAPSHOT to 2.9.1 --- framework/modules/bukkit/bukkit-xseries/build.gradle.kts | 2 +- framework/platforms/bukkit-platform/build.gradle.kts | 2 +- framework/platforms/mc-platform/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/modules/bukkit/bukkit-xseries/build.gradle.kts b/framework/modules/bukkit/bukkit-xseries/build.gradle.kts index 62d5190b..4113c4c7 100644 --- a/framework/modules/bukkit/bukkit-xseries/build.gradle.kts +++ b/framework/modules/bukkit/bukkit-xseries/build.gradle.kts @@ -6,7 +6,7 @@ dependencies { compileOnly("org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT") api("io.fairyproject:core-command") - api("com.github.cryptomorin:XSeries:13.3.2") + api("com.github.cryptomorin:XSeries:13.3.3") implementation("com.google.code.findbugs:jsr305:3.0.2") } diff --git a/framework/platforms/bukkit-platform/build.gradle.kts b/framework/platforms/bukkit-platform/build.gradle.kts index 4c883823..355a3d23 100644 --- a/framework/platforms/bukkit-platform/build.gradle.kts +++ b/framework/platforms/bukkit-platform/build.gradle.kts @@ -6,7 +6,7 @@ dependencies { api(project(":mc-platform")) api("net.kyori:adventure-platform-bukkit:4.4.0") api("net.kyori:adventure-text-serializer-bungeecord:4.4.0") - api("com.github.retrooper:packetevents-spigot:2.9.0-SNAPSHOT") { + api("com.github.retrooper:packetevents-spigot:2.9.1") { exclude(group = "net.kyori") } compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT") { diff --git a/framework/platforms/mc-platform/build.gradle.kts b/framework/platforms/mc-platform/build.gradle.kts index 8475064e..665f1449 100644 --- a/framework/platforms/mc-platform/build.gradle.kts +++ b/framework/platforms/mc-platform/build.gradle.kts @@ -15,7 +15,7 @@ dependencies { api("net.kyori:adventure-text-serializer-gson-legacy-impl:4.23.0") api("net.kyori:adventure-text-serializer-plain:4.23.0") - api("com.github.retrooper:packetevents-api:2.9.0-SNAPSHOT") { + api("com.github.retrooper:packetevents-api:2.9.1") { exclude(group = "net.kyori") } From 0644e83bd9ef0abc6d45901261d634274b3ad7a4 Mon Sep 17 00:00:00 2001 From: LeeGodSRC Date: Thu, 10 Jul 2025 15:40:25 +0800 Subject: [PATCH 4/4] chore: bump version to 0.8.1b2-SNAPSHOT --- global.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.properties b/global.properties index 30fa050b..a4935e57 100644 --- a/global.properties +++ b/global.properties @@ -1 +1 @@ -version = 0.8.1b1-SNAPSHOT \ No newline at end of file +version = 0.8.1b2-SNAPSHOT \ No newline at end of file