Skip to content

Commit 84e824f

Browse files
Tim020claude
andcommitted
[dependabot] Pin Vue 2.x and ecosystem to prevent major version upgrade PRs
The update-types ignore condition only applies to version updates, not security updates. Dependabot was raising PRs to upgrade Vue 2→3 via grouped security update PRs (which bypass update-types filters and always target the default branch). Add explicit versions conditions for vue, vue-router, and vuex to block these upgrades from both update types. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent eca2d42 commit 84e824f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ updates:
55
schedule:
66
interval: "daily"
77
ignore:
8+
# Pinned to Vue 2.x - upgrading to Vue 3 requires a full application rewrite.
9+
# versions condition applies to both version updates AND security updates,
10+
# unlike update-types which only applies to version updates.
11+
- dependency-name: "vue"
12+
versions: [">=3.0.0"]
13+
- dependency-name: "vue-router"
14+
versions: [">=4.0.0"]
15+
- dependency-name: "vuex"
16+
versions: [">=5.0.0"]
817
- dependency-name: "*"
918
update-types: ["version-update:semver-major"]
1019
versioning-strategy: increase

0 commit comments

Comments
 (0)