Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps @vitest/ui from 4.0.9 to 4.0.14.

Release notes

Sourced from @​vitest/ui's releases.

v4.0.14

   🚀 Experimental Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.13

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.12

   🐞 Bug Fixes

... (truncated)

Commits
  • 9ca74cf chore: release v4.0.14
  • 443ecc7 chore: simplified array.from map (#9102)
  • 821aa20 feat(runner): Add full names to tasks (#9087)
  • 22e381e chore(deps): update all non-major dependencies (#9082)
  • c37c2eb feat(ui): add tabbed failure view for toMatchScreenshot with comparison sli...
  • 73b54ce chore: release v4.0.13
  • 5aa84d5 chore: release v4.0.12
  • c3befb0 chore: release v4.0.11
  • 7729236 feat(api): add extensible test artifact API (#8987)
  • 259a3d1 chore: release v4.0.10
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Summary by cubic

Upgrade @vitest/ui to 4.0.15 to improve the test UI and stability. Adds the tabbed failure view for toMatchScreenshot, plus bug fixes and small performance gains.

  • Dependencies
    • Update dev dependency @vitest/ui to 4.0.15.

Written for commit 7933fae. Summary will update automatically on new commits.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 1, 2025
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Dec 1, 2025

Deploying blinklabs-vpn with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7933fae
Status:🚫  Build failed.

View logs

@coderabbitai
Copy link

coderabbitai bot commented Dec 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

@fossabot
Copy link

fossabot bot commented Dec 1, 2025

fossabot is Thinking

@fossabot
Copy link

fossabot bot commented Dec 1, 2025

✓ Safe to upgrade

I recommend merging this upgrade because @​vitest/ui is purely a development tool for visualizing test execution and the project is a React application that is unaffected by the reported Vue-specific coverage regression. The codebase uses standard relative imports (no absolute import paths requiring Vitest 4.x configuration changes), has no Vue components, and the Vitest configuration in vite.config.ts does not use any of the deprecated options mentioned in breaking changes (poolMatchGlobs, environmentMatchGlobs, or deps configuration). This patch release includes bug fixes that will improve the testing UI experience without requiring any code changes.

What we checked

  • Project uses React (^19.1.0), not Vue - the v-model coverage regression does not apply to this codebase [1]
  • @​vitest/ui dependency being upgraded from 4.0.9 to 4.0.14 - a UI visualization tool only [2]
  • Vitest configuration uses standard options (globals, environment, setupFiles, coverage) with no deprecated poolMatchGlobs, environmentMatchGlobs, or deps configuration [3]
  • Test files use standard relative imports (from 'vitest', from '../../test/utils') - no absolute imports that would be affected by Vitest 4.x breaking changes [4]
  • TypeScript configuration uses 'bundler' module resolution without custom path aliases - no absolute import configuration that could conflict with Vitest 4.x [5]
  • @​vitest/ui is only used via the test:ui script command for developer visualization, not in application code or test execution [6]

Dependency Usage

@​vitest/ui is installed as a development dependency that provides a web-based graphical interface for the test suite, invoked via the test:ui script in package.json. This testing tool supports the quality assurance process by offering developers an interactive dashboard to visualize and debug test execution, though it is not directly referenced in application code or configuration files. The dependency serves purely as a developer experience enhancement for the Vitest testing framework configured in this React-based VPN frontend application.

  • Vitest configuration uses standard options (globals, environment, setupFiles, coverage) with no deprecated poolMatchGlobs, environmentMatchGlobs, or deps configuration
  • Test files use standard relative imports (from 'vitest', from '../../test/utils') - no absolute imports that would be affected by Vitest 4.x breaking changes
    import { describe, it, expect, beforeEach, vi } from "vitest";

Changes

The @​vitest/ui package was upgraded with 33 bug fixes addressing critical stability issues including worker termination crashes, memory leaks from unclosed workers, and incorrect test duration reporting, plus 12 new features including an extensible test artifact API, file system caching, and a tabbed screenshot comparison UI with slider. Performance improvements include replacing the debug library with obug and optimizing module fetch operations to avoid unnecessary roundtrips when modules are cached.

  • remove onCancel when worker is terminated (#9033) (6d7f0a9) (v4.0.14, changelog)
  • refactor(forks): simplify IPC channel serialization (#8999) (7c9edff) (v4.0.14, changelog)
  • fix(ui): use execution time from ws reporter (onFinished) (#8975) (f56dc0c) (v4.0.14, changelog)
View 105 more changes

View 8 more changes in the full analysis

References (6)

[1]: Project uses React (^19.1.0), not Vue - the v-model coverage regression does not apply to this codebase

"react": "^19.1.0",

[2]: @​vitest/ui dependency being upgraded from 4.0.9 to 4.0.14 - a UI visualization tool only

"@vitest/ui": "^4.0.14",

[3]: Vitest configuration uses standard options (globals, environment, setupFiles, coverage) with no deprecated poolMatchGlobs, environmentMatchGlobs, or deps configuration

[4]: Test files use standard relative imports (from 'vitest', from '../../test/utils') - no absolute imports that would be affected by Vitest 4.x breaking changes

import { describe, it, expect, beforeEach, vi } from "vitest";

[5]: TypeScript configuration uses 'bundler' module resolution without custom path aliases - no absolute import configuration that could conflict with Vitest 4.x

"moduleResolution": "bundler",

[6]: @​vitest/ui is only used via the test:ui script command for developer visualization, not in application code or test execution

"test:ui": "vitest --ui",


fossabot analyzed this PR using dependency research. View this analysis on the web

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/vitest/ui-4.0.14 branch from 0d00189 to 8abd834 Compare December 4, 2025 20:18
Bumps [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) from 4.0.9 to 4.0.14.
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.14/packages/ui)

---
updated-dependencies:
- dependency-name: "@vitest/ui"
  dependency-version: 4.0.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/vitest/ui-4.0.14 branch from 8abd834 to 7933fae Compare December 4, 2025 20:19
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.

1 participant