build(deps): @eslint/* の major も ignore に含める - #1010
Merged
Merged
Conversation
#999 excluded major updates for eslint but not for @eslint/js, which ships at the same versions. Dependabot acted on the gap within hours: #1004 raises @eslint/js from 9.39.5 to 10.0.1 on its own and leaves eslint at 9.39.5, pairing the two halves of one release across a major boundary. Widening the entry to @eslint/* keeps the pair moving together, so the eslint 9 -> 10 step is taken deliberately as a single change. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This was referenced Aug 23, 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.
何を
.github/dependabot.ymlのignoreに@eslint/*を追加します。- dependency-name: 'eslint' update-types: ['version-update:semver-major'] + # @eslint/js ships in lockstep with eslint, so ignoring only the latter + # lets a major land on one half of the pair while the other stays behind. + - dependency-name: '@eslint/*' + update-types: ['version-update:semver-major']なぜ
#999 で
eslintの major を除外しましたが、@eslint/jsを入れ忘れていました。両者は同じバージョンで同時にリリースされます。dependabot は数時間でこの穴を突いてきました。#1004 がそれです。
eslintは^9.39.5のまま残るので、同じリリースの片割れだけが major をまたぐ状態になります。@eslint/*に広げれば対になって動くので、eslint 9 → 10 は単独の PR として意図的に上げられます。この後
#1004 は不要になります。dependabot は ignore 条件に該当するようになった PR を次回実行時に閉じますが、閉じなければ手で閉じてください。
同じ穴が apm-schema と apm-web にもあるので、それぞれ別 PR を出しています。apm 本体は
@eslint/jsを依存に持っていないため該当しません。