Commit 9716796
Upgrade Minestom dependency to 2026.05.17-1.21.11 (#2)
* Update to Minecraft 1.21.11
* Add shared module for Fabric, NeoForge and Forge
* Fix shared module context keys (LuckPerms#4206)
* Add UUID mismatch warning suppression setting (LuckPerms#4194)
* Hytale (LuckPerms#4213)
* Improve Hytale PermissionProvider compatibility
* Add Hytale with-deps Gradle buildscript
* Fix yaml dependency issue in Hytale jar (LuckPerms#4229)
* Relocate guava and gson in Hytale jar
* Refactor PermissionProcessors
* Attempt to fix slf4j classloading issue on Hytale
* Add inheritance origin metadata for Hytale virtual groups
* Fix duplicate readNode call in SqlStorage
* Remove Hytale chat formatter and update deps
* Improve debug logging for Hytale login handling
* Add rate limit for verbose chat output
* Update bytebin/bytesocks custom config settings
* Add support for NATS token authentication (LuckPerms#4238)
* Update Gradle to v9.4
* Update Hytale to target 2026.03.26-89796e57b
* Update to Minecraft 26.1
* Fix Fabric shadowJar config
* Add index to time column in SQL Messenger (LuckPerms#4255)
* Add context argument to group listmembers command (LuckPerms#4252)
* Add Redis Sentinel support for messaging (LuckPerms#4244)
* build: target latest Minestom (2026.05.17-1.21.11) and publish snapshot from deployment branch
Bumps the Minestom compileOnly dependency in the minestom and
minestom:loader modules from 2025.08.29-1.21.8 to the current Maven
Central release so the OneLiteFeather LuckPerms fork builds against the
Minestom version Titan deploys with. Adds the deployment branch to the
CI publish trigger so net.luckperms:*:5.6-SNAPSHOT is deployed to the
OneLiteFeather repository for downstream Butterfly/Titan builds.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: compile Minestom modules on Java 25 toolchain
Minestom 2026.05.17-1.21.11 requires a JVM 25+ runtime, so the
relocation-free minestom and minestom:loader modules can no longer be
built against Java 21 (':minestom:compileJava' failed to resolve the
dependency). Switch both modules to a Java 25 toolchain and install
JDK 25 alongside 21 in CI; JDK 21 stays the default JAVA_HOME so the
Forge/Fabric/NeoForge platform builds are unaffected and only the
Minestom modules use the 25 toolchain.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* ci: build entire project on JDK 25
The 21/25 split did not work: Gradle's toolchain auto-detection does not
pick up the JDK 25 that setup-java installs as a secondary version, so
':minestom:compileJava' still could not resolve the Java 25 Minestom
dependency. Run the whole build on JDK 25, consistent with the Titan,
Butterfly and shared OneLiteFeather workflows.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* ci: run Gradle on JDK 21, expose JDK 25 toolchain via env
Gradle 8.14.3 cannot run on JDK 25 ('Unsupported class file major
version 69'), so the full-JDK-25 runtime broke the build script
compilation. Keep the Gradle runtime on JDK 21 (last entry, so it is
the default JAVA_HOME) and additionally install JDK 25, exposing it to
Gradle toolchain detection via org.gradle.java.installations.fromEnv so
only the Java 25 Minestom modules use it.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: use Java 25 toolchain for minestom:app (Gradle 9)
Gradle 9 removed project-level sourceCompatibility/targetCompatibility,
which broke ':minestom:app' evaluation after the upstream merge. Replace
them with a Java 25 toolchain, consistent with the minestom and
minestom:loader modules.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: migrate minestom:app to Blossom 2.x DSL
The upstream merge brought net.kyori.blossom 2.2.0, whose DSL replaced
the top-level blossom { replaceTokenIn / replaceToken } block. Use the
sourceSets.main.blossom.javaSources.property form (matching upstream
common/build.gradle) and the {{ version }} placeholder in
LuckPermsApplication.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: override options.release=25 for minestom modules
The root subprojects block forces options.release=11 on every module's
JavaCompile tasks, which set the org.gradle.jvm.version attribute to 11
and made ':minestom:compileJava' reject Minestom 2026.05.17-1.21.11
(requires JVM 25+). Override release to 25 in the three minestom modules
so the Java 25 toolchain compiler targets 25 and the dependency resolves.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* fix(minestom): adapt to upstream LuckPerms common API
The upstream merge changed the common permission-calculator API.
Port MinestomCalculatorFactory to the new CalculatorFactory.build
signature (QueryOptions, Map<String,Node>, CacheMetadata), pass the
source map to the now-parameterised processors, and return the concrete
PermissionCalculatorMonitored instead of the now-abstract
PermissionCalculator (mirrors StandaloneCalculatorFactory). Add the
slf4j-api compile dependency that common no longer exposes transitively.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: keep project group me.lucko.luckperms, publish as net.luckperms
The fork overrode project.group to net.luckperms, which made upstream's
loader shadowJars (include(dependency('me.lucko.luckperms:.*'))) drop
:common, :api and :loader-utils. That broke the standalone jar-in-jar
(NoClassDefFoundError: common.dependencies.DependencyManager during the
preloadDependencies Docker step) and would affect every upstream
platform loader.
Restore project.group to me.lucko.luckperms (matching root subprojects
so the shadow include filters match again) and set groupId =
net.luckperms explicitly on each MavenPublication, so the published
coordinates (net.luckperms:api/common/loader-utils/minestom/
minestom-app/minestom-loader) consumed by Butterfly and Titan stay
unchanged.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* build: publish all LuckPerms platform/loader modules to OLF repo
Adds a shared publishing convention so every remaining platform and
loader module (bukkit/bungee/velocity/fabric/forge/neoforge/sponge/
nukkit/standalone/hytale + loaders, common:minecraft) is deployed to the
OneLiteFeather repository as net.luckperms:<dashed-path>, publishing the
shadowJar for loader modules and the java component otherwise. The six
modules with bespoke publications (api, common, loader-utils, minestom,
minestom-app, minestom-loader) are excluded and unchanged.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* ci: dedupe concurrent push/PR runs to stop Harbor push race
The push and pull_request triggers spawned two concurrent runs for the
same commit, racing on the Harbor image push (build-docker failing with
'blob upload invalid'). Add a concurrency group keyed on the head commit
SHA (shared by both events) with cancel-in-progress, so only one run per
commit executes.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
* ci: drop feature-branch push trigger
Remove the claude/titan-minestom-deployment-XhoNO push trigger; the
pull_request trigger on PR #2 already runs build/test/publish, so the
extra push trigger only added a redundant concurrent run.
https://claude.ai/code/session_01S76fk9ma5Szkf9r1W44RVP
---------
Co-authored-by: lucko <git@lucko.me>
Co-authored-by: Drex <nicknamedrex@gmail.com>
Co-authored-by: John <mcmdev1337@gmail.com>
Co-authored-by: powercas_gamer <cas@mizule.dev>
Co-authored-by: Yannick Schinko <yannick@tedworld.de>
Co-authored-by: Dominik <43303963+0ptk@users.noreply.github.com>
Co-authored-by: masel.io <git@byteexception.eu>
Co-authored-by: claude <claude@anthropic.com>1 parent 9e47abd commit 9716796
190 files changed
Lines changed: 5839 additions & 2958 deletions
File tree
- .github/workflows
- api
- src/main/java/net/luckperms/api/platform
- bukkit/src/main
- java/me/lucko/luckperms/bukkit/calculator
- resources
- bungee/src/main
- java/me/lucko/luckperms/bungee/calculator
- resources
- common
- loader-utils
- src/main/java/me/lucko/luckperms/common/loader
- minecraft
- src/main/java/me/lucko/luckperms/common/minecraft
- calculator
- command
- context
- listeners
- src
- main
- java-templates/me/lucko/luckperms/common/util
- java/me/lucko/luckperms/common
- cacheddata/type
- calculator
- processor
- commands/group
- command
- spec
- config
- context/manager
- dependencies
- http
- locale
- messaging
- nats
- redis
- sql
- plugin
- classpath
- util
- storage/implementation
- file
- sql
- treeview
- verbose
- webeditor
- resources
- test/java/me/lucko/luckperms/common
- cacheddata
- calculator
- command/access
- dependencies
- treeview
- fabric
- src/main
- java/me/lucko/luckperms/fabric
- context
- event
- listeners
- messaging
- mixin
- model
- resources
- forge
- loader
- src/main
- java/me/lucko/luckperms/forge
- calculator
- context
- listeners
- messaging
- service
- resources
- gradle
- wrapper
- hytale
- loader-with-deps
- src/main
- java/me/lucko/luckperms/hytale/loader
- resources
- loader
- src/main
- java/me/lucko/luckperms/hytale/loader
- resources
- src/main
- java/me/lucko/luckperms/hytale
- calculator
- virtualgroups
- context
- listeners
- service
- resources
- minestom
- app
- src/main/java/me/lucko/luckperms/minestom/app
- loader
- src/main/java/me/lucko/luckperms/minestom/calculator
- neoforge
- loader
- src/main
- java/me/lucko/luckperms/neoforge
- context
- listeners
- messaging
- service
- util
- resources
- nukkit/src/main
- java/me/lucko/luckperms/nukkit/calculator
- resources
- sponge
- loader
- sponge-service-proxy
- sponge-service
- src/main
- java/me/lucko/luckperms/sponge
- calculator
- service/model/calculated
- resources
- standalone
- app
- src/main/java/me/lucko/luckperms/standalone/app
- loader
- src
- main
- java/me/lucko/luckperms/standalone
- resources
- test/java/me/lucko/luckperms/standalone
- velocity
- src/main
- java/me/lucko/luckperms/velocity
- calculator
- resources
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
17 | 21 | | |
18 | 22 | | |
19 | 23 | | |
| |||
27 | 31 | | |
28 | 32 | | |
29 | 33 | | |
30 | | - | |
| 34 | + | |
31 | 35 | | |
32 | 36 | | |
33 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | | - | |
4 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
65 | 66 | | |
66 | 67 | | |
67 | 68 | | |
| 69 | + | |
68 | 70 | | |
69 | 71 | | |
70 | 72 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
82 | | - | |
| 82 | + | |
| 83 | + | |
83 | 84 | | |
84 | 85 | | |
85 | 86 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
8 | 9 | | |
9 | | - | |
10 | | - | |
11 | 10 | | |
12 | 11 | | |
13 | 12 | | |
14 | | - | |
| 13 | + | |
15 | 14 | | |
16 | 15 | | |
17 | 16 | | |
18 | 17 | | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | 18 | | |
23 | 19 | | |
| 20 | + | |
24 | 21 | | |
25 | 22 | | |
26 | 23 | | |
| |||
38 | 35 | | |
39 | 36 | | |
40 | 37 | | |
41 | | - | |
42 | | - | |
43 | | - | |
| 38 | + | |
44 | 39 | | |
45 | | - | |
46 | | - | |
47 | | - | |
| 40 | + | |
48 | 41 | | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
| 42 | + | |
53 | 43 | | |
54 | 44 | | |
55 | 45 | | |
| |||
59 | 49 | | |
60 | 50 | | |
61 | 51 | | |
62 | | - | |
63 | | - | |
64 | | - | |
| 52 | + | |
| 53 | + | |
65 | 54 | | |
66 | 55 | | |
67 | 56 | | |
| |||
80 | 69 | | |
81 | 70 | | |
82 | 71 | | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
Lines changed: 10 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
| 41 | + | |
40 | 42 | | |
41 | 43 | | |
42 | 44 | | |
43 | 45 | | |
| 46 | + | |
44 | 47 | | |
45 | 48 | | |
46 | 49 | | |
| |||
50 | 53 | | |
51 | 54 | | |
52 | 55 | | |
53 | | - | |
| 56 | + | |
54 | 57 | | |
55 | 58 | | |
56 | | - | |
| 59 | + | |
57 | 60 | | |
58 | 61 | | |
59 | | - | |
| 62 | + | |
60 | 63 | | |
61 | 64 | | |
62 | 65 | | |
63 | | - | |
| 66 | + | |
64 | 67 | | |
65 | 68 | | |
66 | 69 | | |
67 | | - | |
| 70 | + | |
68 | 71 | | |
69 | 72 | | |
70 | 73 | | |
71 | | - | |
| 74 | + | |
72 | 75 | | |
73 | 76 | | |
74 | 77 | | |
| |||
82 | 85 | | |
83 | 86 | | |
84 | 87 | | |
85 | | - | |
| 88 | + | |
86 | 89 | | |
87 | 90 | | |
Lines changed: 22 additions & 15 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | | - | |
| 31 | + | |
31 | 32 | | |
| 33 | + | |
32 | 34 | | |
33 | 35 | | |
34 | | - | |
35 | 36 | | |
36 | 37 | | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
40 | 41 | | |
41 | 42 | | |
42 | | - | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| 47 | + | |
| 48 | + | |
46 | 49 | | |
47 | | - | |
| 50 | + | |
48 | 51 | | |
49 | | - | |
| 52 | + | |
50 | 53 | | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
51 | 60 | | |
52 | 61 | | |
53 | 62 | | |
| |||
59 | 68 | | |
60 | 69 | | |
61 | 70 | | |
62 | | - | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
63 | 76 | | |
64 | | - | |
65 | | - | |
| 77 | + | |
| 78 | + | |
66 | 79 | | |
67 | 80 | | |
68 | 81 | | |
69 | 82 | | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
| 83 | + | |
77 | 84 | | |
78 | 85 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
268 | 268 | | |
269 | 269 | | |
270 | 270 | | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
271 | 281 | | |
272 | 282 | | |
273 | 283 | | |
| |||
276 | 286 | | |
277 | 287 | | |
278 | 288 | | |
| 289 | + | |
279 | 290 | | |
280 | 291 | | |
281 | 292 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
543 | 543 | | |
544 | 544 | | |
545 | 545 | | |
546 | | - | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
547 | 549 | | |
548 | 550 | | |
549 | 551 | | |
| |||
Lines changed: 9 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
37 | 38 | | |
| 39 | + | |
38 | 40 | | |
39 | 41 | | |
40 | 42 | | |
41 | 43 | | |
| 44 | + | |
42 | 45 | | |
43 | 46 | | |
44 | 47 | | |
| |||
48 | 51 | | |
49 | 52 | | |
50 | 53 | | |
51 | | - | |
| 54 | + | |
52 | 55 | | |
53 | 56 | | |
54 | | - | |
| 57 | + | |
55 | 58 | | |
56 | 59 | | |
57 | | - | |
| 60 | + | |
58 | 61 | | |
59 | 62 | | |
60 | 63 | | |
61 | | - | |
| 64 | + | |
62 | 65 | | |
63 | 66 | | |
64 | 67 | | |
65 | | - | |
| 68 | + | |
66 | 69 | | |
67 | 70 | | |
68 | | - | |
| 71 | + | |
69 | 72 | | |
70 | 73 | | |
0 commit comments