Skip to content

build(deps): bump vite from 5.4.21 to 6.4.3 - #1760

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/vite-6.4.3
Closed

build(deps): bump vite from 5.4.21 to 6.4.3#1760
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/vite-6.4.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps vite from 5.4.21 to 6.4.3.

Release notes

Sourced from vite's releases.

v6.4.3

Please refer to CHANGELOG.md for details.

v6.4.2

Please refer to CHANGELOG.md for details.

v6.4.1

Please refer to CHANGELOG.md for details.

v6.4.0

Please refer to CHANGELOG.md for details.

v6.3.7

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.4.3 (2026-06-01)

6.4.2 (2026-04-06)

6.4.1 (2025-10-20)

6.4.0 (2025-10-15)

  • feat: allow passing down resolved config to vite's createServer (#20932) (ca6455e), closes #20932

6.3.7 (2025-10-14)

  • fix(esbuild): inject esbuild helpers correctly for esbuild 0.25.9+ (#20940) (c59a222), closes #20940

6.3.6 (2025-09-08)

6.3.5 (2025-05-05)

6.3.4 (2025-04-30)

  • fix: check static serve file inside sirv (#19965) (c22c43d), closes #19965
  • fix(optimizer): return plain object when using require to import externals in optimized dependenci (efc5eab), closes #19940

... (truncated)

Commits

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](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.21 to 6.4.3.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.4.3/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.4.3/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 6.4.3
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 28, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 28, 2026 19:44
@dependabot dependabot Bot added javascript Pull requests that update javascript code dependencies Pull requests that update a dependency file labels Jul 28, 2026
@davidornelas11
davidornelas11 requested a review from Copilot July 28, 2026 20:12

Copilot AI left a comment

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.

Copilot wasn't able to review any files in this pull request.

@davidornelas11

Copy link
Copy Markdown
Contributor

@copilot Evaluate this PR from dependabot

Copilot AI commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

@copilot Evaluate this PR from dependabot

PR Evaluation: build(deps): bump vite from 5.4.21 to 6.4.3

What this PR actually does

This is a lockfile-only change (only yarn.lock is modified). The single change is removing one line from the root workspace's lockfile metadata:

-    vite: "npm:^6.0.0"

This is likely a Dependabot cleanup removing a stale root-level listing — not a meaningful version upgrade by itself.


⚠️ Vite 5.4.21 is NOT fully removed

Despite the PR title claiming to bump vite from 5.4.21 → 6.4.3, vite 5.4.21 is still present in the lockfile as a direct (non-peer) dependency of vite-plugin-virtual-mpa@1.12.1, used by packages/static-site:

"vite-plugin-virtual-mpa@npm:^1.12.1":
  version: 1.12.1
  dependencies:
    vite: "npm:^5.4.0"   ← pulls in vite 5.4.21

This means three versions of vite currently coexist in the lockfile:

Range resolved Version Installed by
^5.4.0 5.4.21 vite-plugin-virtual-mpa (static-site)
^6.0.0 6.4.3 All main application packages
^6.0.0 || ^7.0.0 || ^8.0.0 8.1.0 vitest@4.1.6

Assessment

  • Safe to merge — the change itself (de-listing vite from the root workspace's lockfile metadata) is harmless. All application packages already declare "vite": "^6.0.0" directly and are correctly resolved to 6.4.3.
  • ⚠️ Incomplete security fix — vite 5.4.21 remains in the tree. Vite 5.x has known CVEs (e.g. CVE-2025-30208, CVE-2025-31125). While it's a dev-only tool (static-site build), the exposure is worth addressing.

Recommended follow-up

To fully eliminate vite 5.x, check if a newer version of vite-plugin-virtual-mpa supports vite 6+:

cd packages/static-site && yarn add vite-plugin-virtual-mpa@latest

If no compatible version exists, add a Yarn resolution override in the root package.json:

"resolutions": {
  "vite-plugin-virtual-mpa/vite": "^6.0.0"
}

This PR can be merged as-is, but the follow-up above is recommended to complete the vite 5.x removal.

@dependabot @github

dependabot Bot commented on behalf of github Jul 29, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/vite-6.4.3 branch July 29, 2026 18:38
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.

3 participants