Tags
Creators
Details
1.3.0-snapshot.8+26.1.1-forge
Compatibility
Changes
Eighth snapshot of the 1.3.0 line. A maintenance build: dependency and toolchain updates with no change to transform behavior.
Changed
- Updates ASM, the bytecode library behind every transform, from 9.8 to 9.10.1. The supported Java and Minecraft ranges are unchanged, and one jar still runs on Java 17, 21, and 25.
- Updates SLF4J from 2.0.9 to 2.0.18, the enforcer plugin to 3.6.3, the source plugin to 3.4.0, and the test-only log4j API to 2.26.1.
- Updates the build workflow actions to their current major versions, keeping the commit-pinned form they already used.
- Keeps the Fabric loader compile dependency at 0.16.10. The running loader supplies it, so building against a newer release only risks calling an API that the older loaders Retromod accepts do not have.
- Derives the release artifact test's expected paths from its version constant, so a version bump no longer breaks its own mismatch cases.
Because this snapshot changes the bytecode library rather than any single transform rule, it was verified by re-transforming mods from scratch on 26.2 Fabric and 26.2 NeoForge clients, not by the test suite alone.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:fUS6bo71:tHQkuVbB"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:fUS6bo71:tHQkuVbB"
}

