Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -9,17 +9,11 @@
"packageRules": [
{
"groupName": "Kotlin Dependencies",
"matchPackagePrefixes": [
"org.jetbrains.kotlin",
"com.google.devtools.ksp"
]
},
{
"matchPackageNames": [
"co.touchlab.skie:co.touchlab.skie.gradle.plugin"
],
"groupName": "SKIE Update Only",
"prerelease": true
"org.jetbrains.kotlin**",
"co.touchlab.skie**",
"com.google.devtools.ksp**"
]
Comment on lines 12 to +16
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This rule consolidates SKIE with other Kotlin dependencies. The previous, separate rule for SKIE (co.touchlab.skie:co.touchlab.skie.gradle.plugin) included "prerelease": true. This setting is now absent for SKIE (and the other dependencies) in this combined rule.

If SKIE updates (or if all dependencies in this group) should indeed include prereleases, please consider adding "prerelease": true to this rule, as shown in the suggestion.

If prerelease: true is only required for SKIE and not for org.jetbrains.kotlin or com.google.devtools.ksp, then SKIE might need to remain in a separate packageRules entry to maintain that specific configuration, or this rule would need to be split.

      "matchPackageNames": [
        "org.jetbrains.kotlin**",
        "co.touchlab.skie**",
        "com.google.devtools.ksp**"
      ],
      "prerelease": true

}
]
}