fix(renovate): Kotlin パッケージを1つのグループにまとめて重複 PR を防ぐ#467
Merged
yuuahp merged 1 commit intojaoafa:mainfrom Apr 5, 2026
Merged
Conversation
Renovate が Kotlin Gradle プラグインと Kotlin Maven ライブラリを別グループとして 扱っていたため、libs.versions.toml の同じ `kotlin` バージョン参照を更新する 差分が同一のPRが2件作成される問題があった。 `org.jetbrains.kotlin` で始まる全パッケージを `kotlin` グループに統合し、 今後は1つのPRにまとめて作成されるよう修正する。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
book000
approved these changes
Apr 5, 2026
yuuahp
approved these changes
Apr 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
Renovate が Kotlin Gradle プラグインと Kotlin Maven ライブラリを別グループとして扱っていたため、
libs.versions.tomlの同じkotlinバージョン参照を更新する差分が同一のPRが2件作成される問題を修正します。問題の詳細
libs.versions.tomlでは以下のパッケージがすべて同一のkotlinバージョン参照を使用しています:org.jetbrains.kotlin.jvm,org.jetbrains.kotlin.plugin.serializationorg.jetbrains.kotlin:kotlin-reflect,org.jetbrains.kotlin:kotlin-testRenovate はこれらを
renovate/kotlinとrenovate/kotlin-monorepoの2つのブランチに分けて管理するため、実際の差分が完全に同一のPRが重複して作成されていました(例: PR #454 と #455)。修正内容
renovate.jsonにorg.jetbrains.kotlinで始まる全パッケージをkotlinグループに統合するルールを追加しました。{ "groupName": "kotlin", "matchPackageNames": [ "/^org\\.jetbrains\\.kotlin/" ] }これにより次回の Renovate 実行から、Kotlin 関連の全パッケージが1つのPRにまとめて作成されます。
関連PR
🤖 Generated with Claude Code