Skip to content

Use matchPackageNames with ** #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
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

}
]
}