๐ Describe the bug
JavaFX early access versions like 23-ea+3 are considered stable.
โ ๏ธ Current behavior
JavaFX early access versions are added as update comments
โ
Expected behavior
JavaFX early access versions are not added as update comments
๐ฃ Steps to reproduce
- depend on
org.openjfx:javafx-base:13.0.1
- do
refreshVersions
Work-around
rejectVersionIf {
fun Version.getAugmentedStabilityLevel() =
// work-around for https://github.com/Splitties/refreshVersions/issues/721
if ((moduleId.group == "org.openjfx") && (value.contains("ea"))) {
StabilityLevel.EarlyAccessProgram
} else {
stabilityLevel
}
candidate.getAugmentedStabilityLevel().isLessStableThan(current.getAugmentedStabilityLevel())
}
๐ Describe the bug
JavaFX early access versions like
23-ea+3are considered stable.JavaFX early access versions are added as update comments
โ Expected behavior
JavaFX early access versions are not added as update comments
๐ฃ Steps to reproduce
org.openjfx:javafx-base:13.0.1refreshVersionsWork-around
rejectVersionIf { fun Version.getAugmentedStabilityLevel() = // work-around for https://github.com/Splitties/refreshVersions/issues/721 if ((moduleId.group == "org.openjfx") && (value.contains("ea"))) { StabilityLevel.EarlyAccessProgram } else { stabilityLevel } candidate.getAugmentedStabilityLevel().isLessStableThan(current.getAugmentedStabilityLevel()) }