Skip to content

chore(deps): update vite+ to v0.3.2 - #723

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/vite+
Open

chore(deps): update vite+ to v0.3.2#723
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/vite+

Conversation

@renovate

@renovate renovate Bot commented Sep 14, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
vite (source) 0.3.10.3.2 age adoption passing confidence
vite-plus (source) 0.3.10.3.2 age adoption passing confidence

Release Notes

voidzero-dev/vite-plus (vite)

v0.3.2: vite-plus v0.3.2: independent package-manager versions and Oxlint plugin APIs

Compare Source

vp env use now sets each package manager's version independently. This release also adds Oxlint plugin APIs and fixes migration, installation, and template extraction.

Breaking Changes
Package-manager overrides

Direct package-manager commands no longer use VP_PACKAGE_MANAGER. Use the matching version variable in shell profiles, CI jobs, and Dockerfiles:

Previous override for a direct command New override
VP_PACKAGE_MANAGER=npm@<version> VP_NPM_VERSION=<version>
VP_PACKAGE_MANAGER=pnpm@<version> VP_PNPM_VERSION=<version>
VP_PACKAGE_MANAGER=yarn@<version> VP_YARN_VERSION=<version>
VP_PACKAGE_MANAGER=bun@<version> VP_BUN_VERSION=<version>

VP_PACKAGE_MANAGER still selects the manager and version for vp install and related commands. vp env use pnpm@10 now changes only the direct pnpm commands. To override vp install, set VP_PACKAGE_MANAGER explicitly.

The old .session-package-manager file is no longer read or migrated. Run vp env use again to create the new session files. Projects that use only project pins or global defaults need no changes. See the environment guide (#​2658, #​2659), by @​liangmiQwQ.

Installer preferences

VP_NODE_MANAGER now controls only Node.js. Existing installations retain saved preferences during upgrades, so vp upgrade needs no configuration changes. For scripted installations, set VP_PM_MANAGER to apply the same choice to package managers:

Previous combined setting New combined setting
VP_NODE_MANAGER=no VP_NODE_MANAGER=no VP_PM_MANAGER=no
VP_NODE_MANAGER=yes VP_NODE_MANAGER=yes VP_PM_MANAGER=yes

Update installer commands in CI jobs and Dockerfiles. Use VP_NPM_MANAGER, VP_PNPM_MANAGER, VP_YARN_MANAGER, or VP_BUN_MANAGER for individual preferences. The interactive prompt retains its combined choice. See the installer variables guide (#​2681), by @​liangmiQwQ.

Vite DevTools

Projects that install @vitejs/devtools must update its dependency range from ^0.4.0 || ^0.5.0 to ^0.7.1. Projects without this optional dependency need no changes. This requirement comes with the Vite upgrade listed below.

Highlights
  • Installers and vp upgrade share setup behavior across platforms, which simplifies maintenance. The installers retain support for older releases (#​2611), by @​liangmiQwQ.
  • Custom Oxlint rules can import their APIs from vite-plus/lint/plugins and vite-plus/lint/plugins-dev. vp migrate updates supported existing imports (#​2328), by @​fengmk2.
  • vp install and vp add now honor --ignore-scripts for named packages and managed global installations (#​2682), by @​jong-kyung.
  • vp create rejects malformed registry versions that could place organization template files outside the cache directory (#​2665), by @​fengmk2.
Features
  • The bundled tools update from vite@8.2.2 to vite@8.3.0 and from rolldown@1.2.7 to rolldown@1.2.8. They also update from oxlint@1.81.0 to oxlint@1.82.0 and from oxfmt@0.66.0 to oxfmt@0.67.0. The new linter and formatter can flag code that passed before. Run vp fmt after the upgrade if CI runs vp check (#​2670), by @​fengmk2.
Fixes & Enhancements
  • vp env pin updates an active local .nvmrc and preserves its comments. Use --target nvmrc to select this file explicitly (#​2676), by @​ywenhao.
  • vp migrate reports unsupported ESLint rules that it skips, so users can review the missing checks (#​2689), by @​yusuke99.
  • vp migrate imports leftover tsdown configuration when a project already uses Vite+ (#​2646), by @​TheAlexLichter.
  • vp migrate accepts single-line JSON formatter configuration with a final newline (#​2643), by @​TheAlexLichter.
  • vp migrate avoids a redundant playwright dependency when the project already declares @playwright/test (#​2637), by @​yusuke99.
  • Newly scaffolded local generators honor --no-interactive and report missing arguments without prompts. Existing generators need the updated entrypoint (#​2677), by @​SaKaNa-Y.
  • vp upgrade installs its dependencies correctly when the installation directory is inside a pnpm workspace (#​2644), by @​fengmk2.
  • Nested package-manager commands retain the selected Node runtime and package-manager versions (#​2631), by @​lyzno1.
  • Built-in tools reuse the Node executable that starts the CLI. Editor lint and format servers work when node is absent from PATH (#​2673), by @​fengmk2.
  • The npm command wrapper enables Node's compile cache before it loads the CLI, which reduces repeated startup work (#​2648), by @​pablog12.
  • Package-manager commands suppress pnpm, npm, and supported Yarn update notices. Yarn 4 daily tips are also hidden (#​2649, #​2650, #​2651), by @​fengmk2.
  • Invalid package.json errors include the affected file's path (#​2683), by @​adamaveray.
Docs
  • The README task example uses the supported env field (#​2653), by @​SaKaNa-Y.
  • Migration guidance tells pnpm users to retain the generated vite and vitest dependencies (#​2660), by @​naokihaba.
  • Lint and format guides explain root configuration and overrides for monorepos. They clarify that nested configuration is not supported (#​2668), by @​liangmiQwQ.
Chore
Bundled Versions
Tool Version Source
vite 8.3.0 434e8e9
rolldown 1.2.8 9704b56
tsdown 0.23.0 npm
vitest 4.1.11 npm
oxlint 1.82.0 npm
oxlint-tsgolint 7.0.2001 npm
oxfmt 0.67.0 npm
Upgrade
vp upgrade
New Contributors

@​yusuke99, @​pablog12, @​SaKaNa-Y, @​ywenhao, @​adamaveray

Full Changelog: voidzero-dev/vite-plus@v0.3.1...v0.3.2

Published Packages
  • @voidzero-dev/vite-plus-core@0.3.2
  • vite-plus@0.3.2
Installation

macOS/Linux:

curl -fsSL https://vite.plus | bash

Windows:

irm https://vite.plus/ps1 | iex

Or download and run vp-setup.exe from the assets below.

Docker:

docker run --rm -it -v "$PWD:/app" -w /app ghcr.io/voidzero-dev/vite-plus:0.3.2 vp build

Run any vp command without installing it; see the Docker guide for more.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions

github-actions Bot commented Sep 14, 2026

Copy link
Copy Markdown

fspy benchmark

linux

dynamic/launch             change  +0.90%  [-10.14% .. +13.00%]  overhead  +282.71%
dynamic/access             change  -0.39%  [ -3.06% ..  +1.27%]  overhead    +8.28%
dynamic/access-relative    change  +0.38%  [ -0.67% ..  +1.23%]  overhead   +49.13%
dynamic/access-contended   change  +1.10%  [ -1.90% ..  +3.14%]  overhead   +10.03%
static/launch              change  +1.42%  [ -8.15% .. +10.40%]  overhead  +714.27%
static/access              change  +0.36%  [ -1.26% ..  +1.62%]  overhead  +827.90%
static/access-relative     change  +0.10%  [ -1.43% ..  +1.53%]  overhead +1345.63%
static/access-contended    change  -0.45%  [ -2.19% ..  +2.84%]  overhead +3349.30%

macos

dynamic/launch             change  +0.01%  [ -5.11% ..  +5.59%]  overhead  +226.91%
dynamic/access             change  -0.01%  [ -5.05% ..  +3.67%]  overhead    +1.80%
dynamic/access-relative    change  -0.87%  [ -4.80% ..  +3.17%]  overhead  +235.24%
dynamic/access-contended   change  +0.55%  [-86.55% .. +25.39%]  overhead    -0.06%

windows

dynamic/launch             change  -1.77%  [-12.12% ..  +7.21%]  overhead   +21.19%
dynamic/access             change  -0.18%  [ -2.96% ..  +1.20%]  overhead    +2.00%
dynamic/access-relative    change  +0.18%  [ -1.05% ..  +1.21%]  overhead    +1.46%
dynamic/access-contended   change  +0.87%  [ -3.15% .. +19.19%]  overhead    +1.38%

@renovate renovate Bot changed the title chore(deps): update dependency vite to v0.3.2 chore(deps): update vite+ to v0.3.2 Sep 14, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatednpm/​@​voidzero-dev/​vite-plus-core@​0.3.1 ⏵ 0.3.298 +110077 +199 +1100
Updatednpm/​vite-plus@​0.3.1 ⏵ 0.3.298 +1100100 +1100 +1100

View full report

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants