Skip to content

chore(deps): update devdependency vite-plus to v0.1.16#265

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vite
Open

chore(deps): update devdependency vite-plus to v0.1.16#265
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vite

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 16, 2026

This PR contains the following updates:

Package Change Age Confidence
vite-plus (source) 0.1.120.1.16 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

voidzero-dev/vite-plus (vite-plus)

v0.1.16: vite-plus v0.1.16 — Security patches, Volta migration and Windows fixes

Compare Source

A broad release focused on security and ecosystem compatibility: 3 Vite dev server security fixes, Volta migration support, Bun object-form workspaces, JFrog registry support, and a wave of Windows and shell fixes.

Highlights
  • Security: 3 Vite dev server vulnerabilities patched — Vite 8.0.5 fixes arbitrary file read via WebSocket (CVE-2026-39363, High — vite#22159), server.fs.deny bypass with query parameters (CVE-2026-39364, High — vite#22160), and path traversal in optimized deps .map handling (CVE-2026-39365, Moderate — vite#22161)
  • Volta node version migrationvp migrate now migrates Volta-managed Node.js versions to .node-version (#​1201)
  • vp env off disables Node.js management globally — Disables Node.js management for all vp commands, not just the current shell (#​1255)
  • Bun object-form workspace support — Workspaces defined as objects in package.json are now properly detected (#​1250)
  • Windows install reliability — Fixed PowerShell install errors and scoped CI env vars to child processes (#​1284, #​1292)
Features
Fixes & Enhancements
Refactor
  • Use .ts import extensions (#​1274) — @​fengmk2
  • Migrate CLI build from tsc+rolldown to tsdown (#​1276) — @​fengmk2
    Replaces the split build strategy (tsc for local CLI code + rolldown for global modules) with a unified tsdown configuration. All third-party deps are now inlined at build time, eliminating the rolldown.config.ts and its manual external/path-rewriting plugins. Runtime dependencies dropped from 10 → 6:
    Before (v0.1.15) After (v0.1.16)
    dependencies 10 6
    Removed cac, cross-spawn, jsonc-parser, picocolors (inlined by tsdown)
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.16
  • @voidzero-dev/vite-plus-test@0.1.16
  • vite-plus@0.1.16
Installation

macOS/Linux:

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

Windows:

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

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​porada, @​hakshu25, @​shaneturner, @​rChaoz, @​FleetAdmiralJakob

Full Changelog: voidzero-dev/vite-plus@v0.1.15...v0.1.16

v0.1.15: vite-plus v0.1.15 -- Task runner concurrency controls, vpr shorthand and bun support

Compare Source

A packed release with task runner concurrency controls, a new vpr shorthand, dynamic shell completions, bun package manager support, and 10x migration performance improvement.

Highlights
  • Task runner concurrency controls -- New --concurrency-limit flag to limit concurrent tasks (defaults to 4) and --parallel flag to ignore task dependencies and run all tasks at once (vite-task#288, vite-task#309)
  • vpr standalone shorthand -- Run tasks faster with vpr build instead of vp run build (#​1178)
  • Dynamic shell completions -- vp run and vpr now offer tab-completion for available tasks across all major shells (#​1181)
  • Bun package manager support -- vp create and install scripts now support bun as a first-class package manager (#​1005)
  • 10x migration speedup -- rewriteAllImports uses cached rules, pre-filtering, and rayon parallelism for dramatically faster migrations (#​1172)
Breaking Changes
  • vp run argument order -- Flags must now come before the task name: vp run -r build instead of vp run build -r, because arguments after the task name are now passed through to the task instead of consumed by vp (vite-task#286, vite-task#290) -- @​liangmiQwQ, @​branchseer
  • VITE_PLUS_* env vars renamed to VP_* -- All environment variables now use the shorter VP_ prefix (#​1166) -- @​jong-kyung
Features
Fixes & Enhancements
Refactoring
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.15
  • @voidzero-dev/vite-plus-test@0.1.15
  • vite-plus@0.1.15
Installation

macOS/Linux:

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

Windows:

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

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​Giorno-Giovana, @​connorshea

Full Changelog: voidzero-dev/vite-plus@v0.1.14...v0.1.15

v0.1.14: vite-plus v0.1.14 — Shell Completions, Log Modes, Linux musl, and Devcontainer Support

Compare Source

A feature-packed release bringing shell completion support, new task log output modes, Linux musl target builds, improved project creation UX, and numerous testing and compatibility fixes.

Highlights
  • Shell completion support — Tab completions for bash, zsh, fish, and PowerShell (#​974)
  • Task log output modes — New --log=interleaved|labeled|grouped modes for controlling task output display (vite-task#266)
  • Smart cache skipping — Tasks that modify their own inputs are now automatically excluded from caching (vite-task#248)
  • Linux musl target support — Native builds for Alpine Linux and musl-based distros (#​995)
  • Create project in current directoryvp create . now works to scaffold a project in the current directory (#​1097)
  • Non-interactive installation — Devcontainers and CI environments can now install vite-plus without interactive prompts (#​1092)
Features
Fixes & Enhancements
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.14
  • @voidzero-dev/vite-plus-test@0.1.14
  • vite-plus@0.1.14
Installation

macOS/Linux:

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

Windows:

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

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​bhbs, @​naokihaba, @​camc314, @​CoutinhoTTS

Full Changelog: voidzero-dev/vite-plus@v0.1.13...v0.1.14

v0.1.13: vite-plus v0.1.13 — Windows Improvements, Svelte Support & DTS Fixes

Compare Source

This release brings significant Windows platform improvements, Svelte template support, and resolves over 130 DTS warnings.

Highlights
  • Svelte Supportvp create now supports Svelte templates via the sv CLI (#​982)
  • Windows Trampoline — Replaced .cmd wrappers with a trampoline exe for more reliable Node.js version switching on Windows (#​981)
  • DTS Warnings Resolved — Fixed ~137 DTS warnings in vp pack when importing UserConfig (#​993)
  • Terminal Color Detection — Adopted DA1 sandwich technique for robust OSC color query detection (#​986)
Features
Fixes & Enhancements
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.13
  • @voidzero-dev/vite-plus-test@0.1.13
  • vite-plus@0.1.13
Installation

macOS/Linux:

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

Windows:

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

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​jong-kyung, @​JasonOA888, @​mudiageo, @​creativerezz, @​rrdelaney, @​liangmiQwQ, @​ErikCH, @​TheAlexLichter

Full Changelog: voidzero-dev/vite-plus@v0.1.12...v0.1.13


Configuration

📅 Schedule: (UTC)

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

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


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

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

@renovate renovate bot added the chore label Mar 16, 2026
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Mar 16, 2026

Deploying unsight with  Cloudflare Pages  Cloudflare Pages

Latest commit: e964a75
Status:🚫  Build failed.

View logs

@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Mar 16, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 3 workspace projects
Progress: resolved 1, reused 0, downloaded 0, added 0
packages/web                             |  WARN  deprecated unplugin-vue-router@0.19.2
Progress: resolved 36, reused 0, downloaded 0, added 0
Progress: resolved 45, reused 0, downloaded 0, added 0
Progress: resolved 46, reused 0, downloaded 0, added 0
Progress: resolved 284, reused 0, downloaded 0, added 0
Progress: resolved 479, reused 0, downloaded 0, added 0
Progress: resolved 663, reused 0, downloaded 0, added 0
Progress: resolved 803, reused 0, downloaded 0, added 0
Progress: resolved 989, reused 0, downloaded 0, added 0
Progress: resolved 1073, reused 0, downloaded 0, added 0
Progress: resolved 1271, reused 0, downloaded 0, added 0
/tmp/renovate/repos/github/danielroe/unsight.dev/packages/web:
 ERR_PNPM_TRUST_DOWNGRADE  High-risk trust downgrade for "semver@6.3.1" (possible package takeover)

This error happened while installing the dependencies of nuxt@4.4.2
 at @nuxt/vite-builder@4.4.2
 at @vitejs/plugin-vue-jsx@5.1.5
 at @babel/core@7.29.0

Trust checks are based solely on publish date, not semver. A package cannot be installed if any earlier-published version had stronger trust evidence. Earlier versions had provenance attestation, but this version has no trust evidence. A trust downgrade may indicate a supply chain incident.

@renovate renovate bot force-pushed the renovate/vite branch from 1d92684 to 941b38e Compare March 16, 2026 12:15
@renovate renovate bot changed the title chore(deps): pin devdependency vite-plus to 0.1.12 chore(deps): pin devdependency vite-plus to 0.1.12 - autoclosed Mar 16, 2026
@renovate renovate bot closed this Mar 16, 2026
@renovate renovate bot deleted the renovate/vite branch March 16, 2026 12:43
@renovate renovate bot changed the title chore(deps): pin devdependency vite-plus to 0.1.12 - autoclosed chore(deps): update devdependency vite-plus to v0.1.13 Mar 23, 2026
@renovate renovate bot reopened this Mar 23, 2026
@renovate renovate bot force-pushed the renovate/vite branch 2 times, most recently from 941b38e to e7995e3 Compare March 23, 2026 05:43
@renovate renovate bot force-pushed the renovate/vite branch from e7995e3 to cc72954 Compare March 31, 2026 16:34
@renovate renovate bot changed the title chore(deps): update devdependency vite-plus to v0.1.13 chore(deps): update devdependency vite-plus to v0.1.15 Mar 31, 2026
@socket-security
Copy link
Copy Markdown

socket-security bot commented Mar 31, 2026

No dependency changes detected. Learn more about Socket for GitHub.

👍 No dependency changes detected in pull request

@renovate renovate bot force-pushed the renovate/vite branch 2 times, most recently from b5f5f01 to 2b0b3aa Compare April 6, 2026 17:37
@renovate renovate bot changed the title chore(deps): update devdependency vite-plus to v0.1.15 chore(deps): update devdependency vite-plus to v0.1.16 Apr 6, 2026
@renovate renovate bot force-pushed the renovate/vite branch from 2b0b3aa to e964a75 Compare April 8, 2026 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants