Bump vite and vitest in /bindings/ts#258
Conversation
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) to 8.0.8 and updates ancestor dependency [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together. Updates `vite` from 5.4.21 to 8.0.8 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite) Updates `vitest` from 2.1.9 to 4.1.3 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.3/packages/vitest) --- updated-dependencies: - dependency-name: vite dependency-version: 8.0.8 dependency-type: indirect - dependency-name: vitest dependency-version: 4.1.3 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit ad21376. Configure here.
| "rimraf": "^5.0.7", | ||
| "typescript": "^5.6.3", | ||
| "vitest": "^2.1.4" | ||
| "vitest": "^4.1.3" |
There was a problem hiding this comment.
Node engine field incompatible with new dependencies
Medium Severity
The engines field declares "node": ">=18" but the updated vitest 4.x requires ^20.0.0 || ^22.0.0 || >=24.0.0 and vite 8.x requires ^20.19.0 || >=22.12.0. A contributor or CI environment running Node 18 would satisfy the declared engine constraint but fail when running npm test or installing dev dependencies with strict engine checks enabled. The engines field needs to be tightened to at least >=20 to match the actual minimum supported version.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit ad21376. Configure here.


Bumps vite to 8.0.8 and updates ancestor dependency vitest. These dependencies need to be updated together.
Updates
vitefrom 5.4.21 to 8.0.8Release notes
Sourced from vite's releases.
... (truncated)
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
6e585dcrelease: v8.0.8e137601fix(ssr): class property keys hoisting matching imports (#22199)15f1c15fix: avoiddns.getDefaultResultOrdertemporary (#22202)6baf587feat: update rolldown to 1.0.0-rc.15 (#22201)fdb2e6frelease: v8.0.75c05b04fix: use sync dns.getDefaultResultOrder instead of dns.promises (#22185)7b3086frelease: v8.0.6af71fb2chore: replace remaining prettier script (#22179)51d3e48feat: update rolldown to 1.0.0-rc.13 (#22097)17a8f9efix(optimize-deps): hoist CJS interop assignment (#22156)Updates
vitestfrom 2.1.9 to 4.1.3Release notes
Sourced from vitest's releases.
... (truncated)
Commits
2dc0d62chore: release v4.1.37827363feat: addexperimental.preParseflag (#10070)691d341fix(snapshot): export custom snapshot matcher helper fromvitest(#10042)59b0e64feat(experimental/snapshot): support custom snapshot matcher (#9973)487990afeat(experimental): supportbrowser.locators.exactoption (#10013)146d4f0fix: add@vitest/coverage-v8and@vitest/coverage-istanbulas optional de...3f5bfa3fix: advance fake timers withexpect.pollinterval (#10022)9dbf477fix(vm): fix external module resolve error with deps optimizer query (#10024)ec20455fix(expect): don't leak "runner" types (#10004)66751c9fix(expect): removeJestExtendError.contextfrom verbose error reporting (#...Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vitest since your current version.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Note
Medium Risk
Major-version upgrades for the TS tooling stack (
vite5→8 andvitest2→4) can introduce build/test behavior changes and stricter Node engine expectations via transitive deps.Overview
Updates the
bindings/tstoolchain by bumpingvitestto^4.1.3and refreshingpackage-lock.json, which pulls invite8.0.8and its updated dependency graph.The lockfile reflects significant transitive changes (e.g.,
rolldownreplacingrollup, newlightningcss/WASM and platform bindings, and updatedchai/@vitest/*packages), along with a package version bump to0.4.0.Reviewed by Cursor Bugbot for commit ad21376. Bugbot is set up for automated code reviews on this repo. Configure here.