Skip to content

chore(deps-dev): bump vite-plus from 0.1.13 to 0.1.17#1454

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/vite-plus-0.1.17
Open

chore(deps-dev): bump vite-plus from 0.1.13 to 0.1.17#1454
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/vite-plus-0.1.17

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 16, 2026

Bumps vite-plus from 0.1.13 to 0.1.17.

Release notes

Sourced from vite-plus's releases.

vite-plus v0.1.17 — Windows installer, Nushell, and safer upgrades

Broader platform reach with a standalone Windows installer and Nushell shell support.

Highlights

  • Windows .exe installer — standalone vp-setup.exe now shipped as release asset for fully offline-friendly Windows installs (#1293)
  • Nushell support — new env.nu wrapper makes vp env work natively in Nushell (#1312)
  • Node.js compatibility guardvp now blocks execution on incompatible Node.js versions instead of failing opaquely (#1360)
  • Safer global install & vp upgrade — hardened trampoline regeneration and overall upgrade path to avoid leaving partial installs behind (#1338, #1369)
  • Cached vp check — task runner now caches vp check output for faster repeat runs (#1328)

Features

Fixes & Enhancements

Refactor

Docs

Chore

  • Use vp check instead of vp fmt && vp lint in monorepo template (#1339) — @​fengmk2

... (truncated)

Commits
  • 48e49ca feat(deps): upgrade upstream dependencies (#1375)
  • eb7370a feat(cli): add vp node shorthand for vp env exec node (#1359)
  • 4d9bc46 feat(js-executor): block vp commands when Node.js version is incompatible (#1...
  • bd0e949 fix(cli,bin): Add env.VP_VERSION for oxlint and oxfmt (#946)
  • 18f9f50 refactor: split cli.rs into focused submodules (#1351)
  • 6ebba00 refactor: extract check command into its own module (#1350)
  • e22fc93 feat(create): set npm.scriptRunner to vp in vp create (#1346)
  • 31e90b9 refactor(cli): use rolldown's disable_panic_hook feature for panic hook (#1...
  • 5ab336f fix: more safer Vite+ global install and vp upgrade (#1338)
  • 51def64 fix: Consolidate agent instructions. (#1340)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [vite-plus](https://github.com/voidzero-dev/vite-plus/tree/HEAD/packages/cli) from 0.1.13 to 0.1.17.
- [Release notes](https://github.com/voidzero-dev/vite-plus/releases)
- [Commits](https://github.com/voidzero-dev/vite-plus/commits/v0.1.17/packages/cli)

---
updated-dependencies:
- dependency-name: vite-plus
  dependency-version: 0.1.17
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added Dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 16, 2026
Comment thread package.json
Comment on lines 62 to 68
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.13",
"vite-bundle-analyzer": "^1.3.6",
"vite-plugin-mkcert": "^1.17.10",
"vite-plus": "0.1.13",
"vite-plus": "0.1.17",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.13"
},
"config": {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 The pnpm.overrides (and the direct vite/vitest devDependencies) were not updated alongside the vite-plus bump from 0.1.13 to 0.1.17, causing both @voidzero-dev/vite-plus-core@0.1.13 and @0.1.17 to be installed simultaneously. This split-brain setup means the vp CLI runs build/test operations with core@0.1.17 internally while all project imports of vite/vitest still resolve to 0.1.13 via the override; the pnpm.overrides and pinned devDependencies should be updated from 0.1.13 to 0.1.17 to restore consistency.

Extended reasoning...

What the bug is: This PR bumps the vite-plus CLI from 0.1.13 to 0.1.17 but leaves three related entries at 0.1.13: the direct vite devDependency (npm:@voidzero-dev/vite-plus-core@0.1.13), the direct vitest devDependency (npm:@voidzero-dev/vite-plus-test@0.1.13), and both entries in pnpm.overrides. The result is that both @voidzero-dev/vite-plus-core@0.1.13 and @voidzero-dev/vite-plus-core@0.1.17 end up installed in the same node_modules tree simultaneously.

The specific code path: vite-plus@0.1.17 carries @voidzero-dev/vite-plus-core@0.1.17 and @voidzero-dev/vite-plus-test@0.1.17 as direct (non-peer) dependencies, so pnpm installs them regardless of the overrides. The overrides only control how the vite/vitest peer slots are satisfied. The lockfile snapshot for @voidzero-dev/vite-plus-test@0.1.17 makes this plain: it lists '@voidzero-dev/vite-plus-core': 0.1.17 as its own direct dependency while simultaneously listing vite: '@voidzero-dev/vite-plus-core@0.1.13' as the resolved peer — two different versions of the same package in the same closure.

Why existing code doesn't prevent it: The pnpm.overrides mechanism redirects package names (the bare vite/vitest identifiers) to the pinned aliases, but it cannot override what vite-plus-test itself depends on directly by its real package name @voidzero-dev/vite-plus-core. pnpm therefore installs both and does not error because both are valid resolutions in their respective dependency trees.

What the impact would be: The 0.1.17 release notes explicitly mention an upstream toolchain upgrade (vite 8.0.8, rolldown 1.0.0-rc.15, etc.), meaning the internal APIs of vite-plus-core@0.1.17 may differ from 0.1.13. Any user code or configuration that imports vite (e.g. vite.config.ts) continues to get 0.1.13, while the CLI dispatches builds and tests using 0.1.17 internally. This version skew can silently cause plugin API mismatches, config option differences, or subtle test runner behavioural changes that are hard to diagnose.

How to fix it: Update package.json in three places: change the vite devDependency to npm:@voidzero-dev/vite-plus-core@0.1.17, change the vitest devDependency to npm:@voidzero-dev/vite-plus-test@0.1.17, and update both pnpm.overrides entries to 0.1.17. Then re-run pnpm install to regenerate the lockfile with a single consistent version of the core.

Step-by-step proof:

  1. vite-plus@0.1.17 package.json depends directly on @voidzero-dev/vite-plus-core@0.1.17 and @voidzero-dev/vite-plus-test@0.1.17.
  2. The project's pnpm.overrides maps vite → npm:@voidzero-dev/vite-plus-core@0.1.13 and vitest → npm:@voidzero-dev/vite-plus-test@0.1.13.
  3. pnpm resolves the project's own vite/vitest slots to 0.1.13 (override applies), but must also satisfy vite-plus's transitive deps under their real package names — so 0.1.17 of both also gets installed.
  4. The lockfile confirms the dual installation: @voidzero-dev/vite-plus-core@0.1.13 and @voidzero-dev/vite-plus-core@0.1.17 both appear in the snapshots section.
  5. Inside the @voidzero-dev/vite-plus-test@0.1.17 snapshot, the vite peer resolves to @voidzero-dev/vite-plus-core@0.1.13 — confirming the split-brain: the test runner uses core@0.1.17 for its own internals but exposes core@0.1.13 as the vite peer to user code.

Addressing the refutation: The refutation argues that this is intentional design — the CLI can be versioned independently from the core packages. While pnpm does not error on this combination, the vite-plus ecosystem (the vp upgrade command, official migration docs) consistently treats the CLI, core, and test packages as a matched set. Additionally the 0.1.17 release includes non-trivial toolchain upgrades (new rolldown, new vite major patch) making version skew between the CLI and the peer-resolved core genuinely risky, not merely cosmetic.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this was pinned in f113363 due to broken native binding. We can restore it once we confirm that the issue is resovled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant