chore(renovate): re-enable dependency updates with a targeted ignore-list#1744
Merged
Conversation
…list Replace the blanket npm/cargo disable (#1536) with per-package ignore rules so Renovate keeps updating everything except the upstream toolchain that is managed elsewhere (sync-remote, the proactive catalog workflow, and the bump-vite-task workflow). This lets security vulnerability alerts get fixed again instead of persisting. Ignored npm packages: rolldown, oxc-*, @oxc-node/*, @oxc-project/*, @vitejs/devtools, oxfmt, oxlint, oxlint-tsgolint, tsdown, vite, vitest, vitest-dev. Ignored cargo: oxc crates plus the vite-task git deps (now including vite_powershell). Lockfile refresh still fails because vite/ and rolldown/ are gitignored, so Renovate raises these PRs with an artifact-update warning and the lockfile is regenerated manually before merge.
✅ Deploy Preview for viteplus-preview canceled.
|
camc314
approved these changes
Jun 2, 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.
Why
Since #1536,
.github/renovate.jsondisabled all npm and cargo updates, so nothing gets updated and security alerts persist. The disable was a workaround for lockfile refresh failing (the vendoredvite/androlldown/dirs that lockfiles depend on are gitignored).What
Replace the blanket disable with a targeted ignore-list, keeping everything else enabled:
rolldown,oxc-*,@oxc-node/*,@oxc-project/*,@vitejs/devtools,oxfmt,oxlint,oxlint-tsgolint,tsdown,vite,vitest,vitest-dev.oxccrates and the vite-task git deps (fspy,vite_glob,vite_path,vite_powershell,vite_str,vite_task,vite_workspace).Note
Lockfile refresh still can't succeed in Renovate (vendored dirs are gitignored), but that no longer blocks the PR: Renovate opens it with an "Artifact update problem" note, and the lockfile is regenerated manually (
just init && pnpm install/cargo update) before merge.