We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e06d6 commit d9a890eCopy full SHA for d9a890e
jupyter-lib/api/src/main/kotlin/org/jetbrains/kotlinx/jupyter/api/libraries/variables.kt
@@ -44,7 +44,11 @@ object DescriptorVariablesSerializer : KSerializer<DescriptorVariables> {
44
}
45
else -> throw SerializationException("Library descriptor should be either object or array")
46
47
- return DescriptorVariables(properties, hasOrder)
+
48
+ // We exclude hints for Renovate CI tool, see https://github.com/Kotlin/kotlin-jupyter-libraries/pull/201
49
+ val productionProperties = properties.filter { !it.name.endsWith("-renovate-hint") }
50
51
+ return DescriptorVariables(productionProperties, hasOrder)
52
53
54
override fun serialize(encoder: Encoder, value: DescriptorVariables) {
0 commit comments