From cf77728d188a310bf74b6cd80b526e4d59823a4a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 18:46:43 +0000 Subject: [PATCH 1/3] Initial plan From 67b9bcae01a1914c9391910667ca045599daad17 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 18:55:55 +0000 Subject: [PATCH 2/3] Migrate to new shadow plugin (com.gradleup.shadow 8.3.8) Co-authored-by: rubensworks <440384+rubensworks@users.noreply.github.com> --- build.gradle | 2 +- logs/debug.log | 6 ++++++ logs/latest.log | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 logs/debug.log create mode 100644 logs/latest.log diff --git a/build.gradle b/build.gradle index 609ce8eb5..877fdb4d5 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id 'com.matthewprenger.cursegradle' version '1.4.0' id 'com.github.kt3k.coveralls' version '2.12.0' id 'com.diffplug.spotless' version '6.25.0' - id 'com.github.johnrengelman.shadow' version '8.1.1' + id 'com.gradleup.shadow' version '8.3.8' id 'com.modrinth.minotaur' version '2.+' } diff --git a/logs/debug.log b/logs/debug.log new file mode 100644 index 000000000..b27557f46 --- /dev/null +++ b/logs/debug.log @@ -0,0 +1,6 @@ +[09Mar2026 18:55:29.835] [Test worker/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[09Mar2026 18:55:29.847] [Test worker/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[09Mar2026 18:55:29.847] [Test worker/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[09Mar2026 18:55:36.978] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: waterlogged with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} +[09Mar2026 18:55:36.979] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: distance with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} +[09Mar2026 18:55:36.980] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: persistent with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} diff --git a/logs/latest.log b/logs/latest.log new file mode 100644 index 000000000..a2fccd10f --- /dev/null +++ b/logs/latest.log @@ -0,0 +1,3 @@ +[09Mar2026 18:55:36.978] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: waterlogged with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} +[09Mar2026 18:55:36.979] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: distance with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} +[09Mar2026 18:55:36.980] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: persistent with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} From 3f876d0a977d339959f5aec7f3dd3a58a2762379 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 18:56:32 +0000 Subject: [PATCH 3/3] Add logs/ to .gitignore and remove tracked log files --- .gitignore | 3 +++ logs/debug.log | 6 ------ logs/latest.log | 3 --- 3 files changed, 3 insertions(+), 9 deletions(-) delete mode 100644 logs/debug.log delete mode 100644 logs/latest.log diff --git a/.gitignore b/.gitignore index 2f1e37b23..fe546be21 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,6 @@ keystore.jks secrets.properties build_number.properties changelog.txt + +# Ignore Minecraft runtime logs +/logs diff --git a/logs/debug.log b/logs/debug.log deleted file mode 100644 index b27557f46..000000000 --- a/logs/debug.log +++ /dev/null @@ -1,6 +0,0 @@ -[09Mar2026 18:55:29.835] [Test worker/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework -[09Mar2026 18:55:29.847] [Test worker/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple -[09Mar2026 18:55:29.847] [Test worker/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 -[09Mar2026 18:55:36.978] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: waterlogged with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} -[09Mar2026 18:55:36.979] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: distance with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} -[09Mar2026 18:55:36.980] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: persistent with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} diff --git a/logs/latest.log b/logs/latest.log deleted file mode 100644 index a2fccd10f..000000000 --- a/logs/latest.log +++ /dev/null @@ -1,3 +0,0 @@ -[09Mar2026 18:55:36.978] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: waterlogged with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} -[09Mar2026 18:55:36.979] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: distance with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}} -[09Mar2026 18:55:36.980] [Test worker/WARN] [net.minecraft.nbt.NbtUtils/]: Unable to read property: persistent with value: for blockstate: {Name:"minecraft:acacia_leaves",Properties:{distance:7,persistent:0b,waterlogged:0b}}