Skip to content

chore(deps-dev): bump the dev-dependencies group with 6 updates#462

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-d1f7caa72f
Open

chore(deps-dev): bump the dev-dependencies group with 6 updates#462
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-d1f7caa72f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps the dev-dependencies group with 6 updates:

Package From To
@vitest/coverage-v8 4.0.18 4.1.0
@vitest/ui 4.0.18 4.1.0
esbuild 0.27.3 0.27.4
lint-staged 16.3.2 16.4.0
typescript-eslint 8.56.1 8.57.0
vitest 4.0.18 4.1.0

Updates @vitest/coverage-v8 from 4.0.18 to 4.1.0

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.0

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features

... (truncated)

Commits
  • 4150b91 chore: release v4.1.0
  • 0c2c013 chore: release v4.1.0-beta.6
  • 689a22a fix(browser): types of getCDPSession and cdp() (#9716)
  • 94eb73b chore(deps): update eslint packages (#9615)
  • 8c96bb0 refator: update links to npmx (#9783)
  • aaf7758 chore: standardize packages README (#9776)
  • 57cbe39 chore(deps): update ast-v8-to-istanbul to v1 (#9755)
  • 79672d7 chore: release v4.1.0-beta.5
  • 1d9e3b3 chore: release v4.1.0-beta.4
  • 4ff8c6f chore(build): raise build target to the minimum supported, don't bundle utils...
  • Additional commits viewable in compare view

Updates @vitest/ui from 4.0.18 to 4.1.0

Release notes

Sourced from @​vitest/ui's releases.

v4.1.0

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features

... (truncated)

Commits

Updates esbuild from 0.27.3 to 0.27.4

Release notes

Sourced from esbuild's releases.

v0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

... (truncated)

Commits

Updates lint-staged from 16.3.2 to 16.4.0

Release notes

Sourced from lint-staged's releases.

v16.4.0

Minor Changes

v16.3.4

Patch Changes

v16.3.3

Patch Changes

  • #1740 0109e8d Thanks @​iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.
Changelog

Sourced from lint-staged's changelog.

16.4.0

Minor Changes

16.3.4

Patch Changes

16.3.3

Patch Changes

  • #1740 0109e8d Thanks @​iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.
Commits
  • 445f9dd chore(changeset): release
  • d91be60 docs: update readme to use picomatch
  • b392a9f refactor: extract matchFiles and add unit tests
  • 687fc90 refactor: replace micromatch with picomatch
  • 26dadf9 chore(changeset): release
  • 9d6e827 build(deps): update dependencies
  • 8aea986 chore(changeset): release
  • 0109e8d fix: strip Git CRLF warning from output
  • See full diff in compare view

Updates typescript-eslint from 8.56.1 to 8.57.0

Release notes

Sourced from typescript-eslint's releases.

v8.57.0

8.57.0 (2026-03-09)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#12080)

🩹 Fixes

  • eslint-plugin: [strict-void-return] false positives with overloads (#12055)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#12079)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#12077)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#12094)
  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#12089)
  • typescript-estree: switch back to use ts.getModifiers() (#12034)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#11355)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.57.0 (2026-03-09)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates vitest from 4.0.18 to 4.1.0

Release notes

Sourced from vitest's releases.

v4.1.0

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features

Bumps the dev-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.18` | `4.1.0` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.0.18` | `4.1.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.3` | `0.27.4` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.3.2` | `16.4.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.56.1` | `8.57.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.0` |


Updates `@vitest/coverage-v8` from 4.0.18 to 4.1.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.0/packages/coverage-v8)

Updates `@vitest/ui` from 4.0.18 to 4.1.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.0/packages/ui)

Updates `esbuild` from 0.27.3 to 0.27.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.3...v0.27.4)

Updates `lint-staged` from 16.3.2 to 16.4.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.3.2...v16.4.0)

Updates `typescript-eslint` from 8.56.1 to 8.57.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.0/packages/typescript-eslint)

Updates `vitest` from 4.0.18 to 4.1.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.0/packages/vitest)

---
updated-dependencies:
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: lint-staged
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@codecov
Copy link

codecov bot commented Mar 16, 2026

❌ 6 Tests Failed:

Tests completed Failed Passed Skipped
330 6 324 6
View the top 3 failed test(s) by shortest run time
client/__tests__/CompactGameCard.test.tsx > client/__tests__/CompactGameCard.test.tsx
Stack Traces | 0s run time
Error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
  Plugin: vite:import-analysis
  File: .../client/__tests__/CompactGameCard.test.tsx:81:58
  65 |  	});
  66 |  	const renderWithProviders = (ui) => {
  67 |  		return render(<TooltipProvider>{ui}</TooltipProvider>);
     |                                                           ^
  68 |  	};
  69 |  	it("renders game title and metadata correctly", () => {
 ❯ TransformPluginContext._formatLog .../node/chunks/node.js:30209:39
 ❯ TransformPluginContext.error .../node/chunks/node.js:30206:14
 ❯ TransformPluginContext.transform .../node/chunks/node.js:27460:10
 ❯ EnvironmentPluginContainer.transform .../node/chunks/node.js:29998:14
 ❯ loadAndTransform .../node/chunks/node.js:24133:26
client/__tests__/DashboardConfig.test.tsx > client/__tests__/DashboardConfig.test.tsx
Stack Traces | 0s run time
Error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
  Plugin: vite:import-analysis
  File: .../client/__tests__/DashboardConfig.test.tsx:43:26
  24 |          <TooltipProvider>
  25 |            <Dashboard />
  26 |          </TooltipProvider>
     |                            ^
  27 |        </QueryClientProvider>);
  28 |  		// Initial value (default 5)
 ❯ TransformPluginContext._formatLog .../node/chunks/node.js:30209:39
 ❯ TransformPluginContext.error .../node/chunks/node.js:30206:14
 ❯ TransformPluginContext.transform .../node/chunks/node.js:27460:10
 ❯ EnvironmentPluginContainer.transform .../node/chunks/node.js:29998:14
 ❯ loadAndTransform .../node/chunks/node.js:24133:26
client/__tests__/GameDetailsModal.test.tsx > client/__tests__/GameDetailsModal.test.tsx
Stack Traces | 0s run time
Error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
  Plugin: vite:import-analysis
  File: .../client/__tests__/GameDetailsModal.test.tsx:21:3
  13 |  	toasts: []
  14 |  }) }));
  15 |  ...us }) => <div data-testid="status-badge">{status}</div> }));
     |                                                                 ^
  16 |  vi.mock("...../src/components/GameDownloadDialog", () => ({ default: ({ open }) => open ? <div data-testid="game-downloa...
  17 |  vi.mock("lucide-react", () => ({
 ❯ TransformPluginContext._formatLog .../node/chunks/node.js:30209:39
 ❯ TransformPluginContext.error .../node/chunks/node.js:30206:14
 ❯ TransformPluginContext.transform .../node/chunks/node.js:27460:10
 ❯ EnvironmentPluginContainer.transform .../node/chunks/node.js:29998:14
 ❯ loadAndTransform .../node/chunks/node.js:24133:26
client/__tests__/GameDownloadDialog.test.tsx > client/__tests__/GameDownloadDialog.test.tsx
Stack Traces | 0s run time
Error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
  Plugin: vite:import-analysis
  File: .../client/__tests__/GameDownloadDialog.test.tsx:139:24
  132 |          <GameDownloadDialog game={mockGame} open={true} onOpenChange={() => {}} />
  133 |          <Toaster />
  134 |        </TooltipProvider>
      |                          ^
  135 |      </QueryClientProvider>);
  136 |  };
 ❯ TransformPluginContext._formatLog .../node/chunks/node.js:30209:39
 ❯ TransformPluginContext.error .../node/chunks/node.js:30206:14
 ❯ TransformPluginContext.transform .../node/chunks/node.js:27460:10
 ❯ EnvironmentPluginContainer.transform .../node/chunks/node.js:29998:14
 ❯ loadAndTransform .../node/chunks/node.js:24133:26
client/__tests__/SearchBar.test.tsx > client/__tests__/SearchBar.test.tsx
Stack Traces | 0s run time
RolldownError: Parse failure: Parse failed with 1 error:
Unexpected JSX expression
 6: describe("SearchBar", () => {
 7:   it("should have accessible icon buttons with aria-labels", () => {
 8:     render(<SearchBar activeFilters={["Action"]} />);
               ^
 9:     // Check for the main search button
10:     expect(screen.getByLabelText("Search")).toBeDefined();
At file: ....../client/__tests__/SearchBar.test.tsx:8:9
  File: ....../client/__tests__/SearchBar.test.tsx:8:9
  6  |  describe("SearchBar", () => {
  7  |  	it("should have accessible icon buttons with aria-labels", () => {
  8  |  		render(<SearchBar activeFilters={["Action"]} />);
     |           ^
  9  |  		// Check for the main search button
  10 |  		expect(screen.getByLabelText("Search")).toBeDefined();
 ❯ error .../dist/shared/logs-D80CXhvg.mjs:147:24
 ❯ normalizeParseError .../rolldown/dist/parse-ast-index.mjs:26:9
 ❯ wrap .../rolldown/dist/parse-ast-index.mjs:6:39
 ❯ parseAstAsync .../rolldown/dist/parse-ast-index.mjs:55:9
 ❯ ssrTransformScript .../node/chunks/node.js:11052:9
 ❯ loadAndTransform .../node/chunks/node.js:24167:64
client/src/__tests__/SetupPage.test.tsx > client/src/__tests__/SetupPage.test.tsx
Stack Traces | 0s run time
Error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you use tsconfig.json, make sure to not set jsx to preserve.
  Plugin: vite:import-analysis
  File: .../src/__tests__/SetupPage.test.tsx:15:82
  12 |  vi.mock("@/lib/auth", () => ({
  13 |  	useAuth: vi.fn(),
  14 |  	AuthProvider: ({ children }) => <div>{children}</div>
     |                                                        ^
  15 |  }));
  16 |  vi.mock("@/hooks/use-toast", () => ({ useToast: vi.fn() }));
 ❯ TransformPluginContext._formatLog .../node/chunks/node.js:30209:39
 ❯ TransformPluginContext.error .../node/chunks/node.js:30206:14
 ❯ TransformPluginContext.transform .../node/chunks/node.js:27460:10
 ❯ EnvironmentPluginContainer.transform .../node/chunks/node.js:29998:14
 ❯ loadAndTransform .../node/chunks/node.js:24133:26

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@sonarqubecloud
Copy link

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