File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 96
96
"fixedIn" : " 1.9.23"
97
97
}
98
98
]
99
+ },
100
+ {
101
+ "url" : " https://youtrack.jetbrains.com/issue/KT-70700" ,
102
+ "isCritical" : true ,
103
+ "text" : " Can't import or build project with Gradle 8.10.\n Update Gradle to 8.10.2+ or Kotlin to 2.0.21+" ,
104
+ "matrix" : [
105
+ {
106
+ "name" : " Gradle" ,
107
+ "from" : " 8.10" ,
108
+ "fixedIn" : " 8.10.2"
109
+ },
110
+ {
111
+ "name" : " GradlePlugin(org.jetbrains.kotlin.multiplatform)" ,
112
+ "fixedIn" : " 2.0.21"
113
+ }
114
+ ]
99
115
}
100
116
]
101
117
}
Original file line number Diff line number Diff line change 1
- import kotlinx.serialization.decodeFromString
2
1
import kotlinx.serialization.json.Json
3
2
import org.jetbrains.kotlin.doctor.entity.Compatibility
4
3
import org.jetbrains.kotlin.doctor.entity.EnvironmentPiece
@@ -40,6 +39,8 @@ class VerifyCompatibilityJson {
40
39
error(" Invalid semantic versions: $invalidVersions " )
41
40
}
42
41
43
- println (compatibility.problems.joinToString(" \n " ) { it.url })
42
+ println (compatibility.problems.joinToString(" \n " ) { problem ->
43
+ " ${problem.url} - ${problem.matrix.joinToString { " ${it.name} [${it.from ? : " -∞" } , ${it.fixedIn ? : " ∞" } )" }} : ${problem.text} "
44
+ })
44
45
}
45
46
}
You can’t perform that action at this time.
0 commit comments