Skip to content

Bump vite from 6.1.0 to 6.4.3 - #2

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

Bump vite from 6.1.0 to 6.4.3#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/vite-6.4.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 22, 2026

Copy link
Copy Markdown

Bumps vite from 6.1.0 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.

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
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for vite since your current version.


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 6.1.0 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: 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 Aug 22, 2026
bugra9 pushed a commit that referenced this pull request Sep 5, 2026
…ore#27284)

$doReadv reads iovec-by-iovec via `FS.read`. On a non-blocking socket,
`FS.read` (nodeSockOps.recvmsg) throws EAGAIN when the queue is empty,
unlike a regular file which returns 0. If an earlier iovec already
consumed data and filled exactly to its length (so the `if (curr < len)
break` doesn't fire), the loop advances to the next iovec, whose
`FS.read` throws EAGAIN. The exception escaped `doReadv`, discarding the
accumulated `ret`, so the whole `readv(2)` failed with EAGAIN even
though bytes were read.

POSIX readv/writev are single gather operations: they return the
available byte count and never fail after partial success.

Observed with an mio `TcpStream` (NODERAWSOCKETS + PROXY_TO_PTHREAD +
JSPI) where an echo returned as two TCP chunks: `read_vectored` with two
iovecs hit recvmsg on iovec #1 (12 bytes, drains recvq) then recvmsg
EMPTY on iovec #2 (next chunk not yet arrived), throwing WouldBlock for
the whole call. A single-buffer read never hits it — matching "read
works, readv fails". It is timing-sensitive: if both chunks are queued
before the read, iovec #2 succeeds.

- `doReadv` and `doWritev` now catch `EAGAIN`/`EWOULDBLOCK`
`FS.ErrnoError` from a subsequent iovec and return the accumulated count
when `ret > 0`, only rethrowing when `ret == 0` (nothing transferred
yet, so the would-block belongs to the first iovec).

Adds `test/fs/test_readv_eagain.c` (wired up as `test_fs_readv_eagain`),
which registers custom devices that satisfy the first iovec fully then
throw EAGAIN, asserting both `readv` and `writev` return the partial
count rather than failing. The test aborts without the fix and passes
with it.
@dependabot @github

dependabot Bot commented on behalf of github Sep 5, 2026

Copy link
Copy Markdown
Author

Looks like vite is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 5, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/vite-6.4.3 branch September 5, 2026 13:55
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.

0 participants