Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

chore(deps-dev): bump the dev group with 17 updates - #847

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-0a782fb6f7
Closed

chore(deps-dev): bump the dev group with 17 updates#847
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-0a782fb6f7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev group with 17 updates:

Package From To
@axe-core/playwright 4.10.2 4.11.1
@babel/preset-react 7.27.1 7.28.5
@biomejs/biome 2.2.4 2.4.4
@changesets/cli 2.29.7 2.29.8
@playwright/test 1.55.0 1.58.2
@tanstack/router-devtools 1.131.50 1.162.4
@tanstack/router-plugin 1.131.50 1.162.4
@testing-library/jest-dom 6.8.0 6.9.1
@testing-library/react 16.3.0 16.3.2
@vitejs/plugin-react-swc 4.1.0 4.2.3
lint-staged 16.2.0 16.2.7
playwright 1.55.0 1.58.2
rollup-plugin-webpack-stats 2.1.4 2.1.11
sharp 0.34.4 0.34.5
typescript 5.9.2 5.9.3
vite 7.1.11 7.3.1
vite-plugin-image-optimizer 2.0.2 2.0.3

Updates @axe-core/playwright from 4.10.2 to 4.11.1

Release notes

Sourced from @​axe-core/playwright's releases.

Release 4.11.1

Bug Fixes

Release 4.11.0

Bug Fixes

Features

Changelog

Sourced from @​axe-core/playwright's changelog.

4.11.1 (2026-01-09)

Bug Fixes

4.11.0 (2025-10-14)

Bug Fixes

Features

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​axe-core/playwright since your current version.


Updates @babel/preset-react from 7.27.1 to 7.28.5

Release notes

Sourced from @​babel/preset-react's releases.

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Committers: 8

v7.28.4 (2025-09-05)

Thanks @​gwillen and @​mrginglymus for your first PRs!

🏠 Internal

  • babel-core, babel-helper-check-duplicate-nodes, babel-traverse, babel-types
  • babel-plugin-transform-regenerator

... (truncated)

Changelog

Sourced from @​babel/preset-react's changelog.

Changelog

Tags:

  • 💥 [Breaking Change]
  • 👓 [Spec Compliance]
  • 🚀 [New Feature]
  • 🐛 [Bug Fix]
  • 📝 [Documentation]
  • 🏠 [Internal]
  • 💅 [Polish]

Note: Gaps between patch versions are faulty, broken or test releases.

This file contains the changelog starting from v8.0.0-alpha.0.

v8.0.0-rc.2 (2026-02-15)

💥 Breaking Change

🐛 Bug Fix

💅 Polish

  • babel-core

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​babel/preset-react since your current version.


Updates @biomejs/biome from 2.2.4 to 2.4.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.4

2.4.4

Patch Changes

  • #9150 6946835 Thanks @​dyc3! - Fixed #9138: Astro files containing --- in HTML content (e.g., <h1>---Hi</h1>) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all.

  • #9150 aa6f837 Thanks @​dyc3! - Fixed #9138: The HTML parser incorrectly failing to parse bracket characters ([ and ]) in text content (e.g. <div>[Foo]</div>).

  • #9151 c0d4b0c Thanks @​dyc3! - Fixed parsing of Svelte directive keywords (use, style) when used as plain text content in HTML/Svelte files. Previously, <p>use JavaScript</p> or <p>style it</p> would incorrectly produce a bogus element instead of proper text content.

  • #9162 7f1e060 Thanks @​dyc3! - Fixed #9161: The Vue parser now correctly handles colon attributes like xlink:href and xmlns:xlink by parsing them as single attributes instead of splitting them into separate tokens.

  • #9164 458211b Thanks @​dyc3! - Fixed #9161: The noAssignInExpressions rule no longer flags assignments in Vue v-on directives (e.g., @click="counter += 1"). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule.

What's Changed

Full Changelog: https://github.com/biomejs/biome/compare/@​biomejs/biome@​2.4.3...@​biomejs/biome@​2.4.4

Biome CLI v2.4.3

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.4

Patch Changes

  • #9150 6946835 Thanks @​dyc3! - Fixed #9138: Astro files containing --- in HTML content (e.g., <h1>---Hi</h1>) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all.

  • #9150 aa6f837 Thanks @​dyc3! - Fixed #9138: The HTML parser incorrectly failing to parse bracket characters ([ and ]) in text content (e.g. <div>[Foo]</div>).

  • #9151 c0d4b0c Thanks @​dyc3! - Fixed parsing of Svelte directive keywords (use, style) when used as plain text content in HTML/Svelte files. Previously, <p>use JavaScript</p> or <p>style it</p> would incorrectly produce a bogus element instead of proper text content.

  • #9162 7f1e060 Thanks @​dyc3! - Fixed #9161: The Vue parser now correctly handles colon attributes like xlink:href and xmlns:xlink by parsing them as single attributes instead of splitting them into separate tokens.

  • #9164 458211b Thanks @​dyc3! - Fixed #9161: The noAssignInExpressions rule no longer flags assignments in Vue v-on directives (e.g., @click="counter += 1"). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule.

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noConditionalExpect. This rule disallows conditional expect() calls inside tests, which can lead to tests that silently pass when assertions never run.

    // Invalid - conditional expect may not run
    test("conditional", async ({ page }) => {
      if (someCondition) {
        await expect(page).toHaveTitle("Title");
      }

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


Updates @changesets/cli from 2.29.7 to 2.29.8

Commits

Updates @playwright/test from 1.55.0 to 1.58.2

Release notes

Sourced from @​playwright/test's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Highlights

#39036 fix(msedge): fix local network permissions #39037 chore: update cft download location #38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​playwright/test since your current version.


Updates @tanstack/router-devtools from 1.131.50 to 1.162.4

Release notes

Sourced from @​tanstack/router-devtools's releases.

v1.162.4

Version 1.162.4 - 2/22/26, 10:50 PM

Changes

Fix

  • remove router context caching (#6734) (eeb8c55) by Manuel Schiller

Packages

  • @​tanstack/solid-router@​1.162.4
  • @​tanstack/react-router@​1.162.4
  • @​tanstack/vue-router@​1.162.4
  • @​tanstack/solid-router-ssr-query@​1.162.4
  • @​tanstack/react-router-ssr-query@​1.162.4
  • @​tanstack/vue-router-ssr-query@​1.162.4
  • @​tanstack/zod-adapter@​1.162.4
  • @​tanstack/valibot-adapter@​1.162.4
  • @​tanstack/arktype-adapter@​1.162.4
  • @​tanstack/router-devtools@​1.162.4
  • @​tanstack/solid-router-devtools@​1.162.4
  • @​tanstack/react-router-devtools@​1.162.4
  • @​tanstack/vue-router-devtools@​1.162.4
  • @​tanstack/router-plugin@​1.162.4
  • @​tanstack/router-vite-plugin@​1.162.4
  • @​tanstack/solid-start@​1.162.4
  • @​tanstack/solid-start-client@​1.162.4
  • @​tanstack/solid-start-server@​1.162.4
  • @​tanstack/vue-start@​1.162.4
  • @​tanstack/vue-start-client@​1.162.4
  • @​tanstack/vue-start-server@​1.162.4
  • @​tanstack/react-start@​1.162.4
  • @​tanstack/react-start-client@​1.162.4
  • @​tanstack/react-start-server@​1.162.4
  • @​tanstack/start-plugin-core@​1.162.4
  • @​tanstack/start-static-server-functions@​1.162.4

v1.162.3

Version 1.162.3 - 2/22/26, 9:28 PM

Changes

Fix

  • avoid false positives in import protection (#6732) (53eb52a) by Manuel Schiller

Packages

  • @​tanstack/start-plugin-core@​1.162.3

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/router-devtools since your current version.


Updates @tanstack/router-plugin from 1.131.50 to 1.162.4

Release notes

Sourced from @​tanstack/router-plugin's releases.

v1.162.4

Version 1.162.4 - 2/22/26, 10:50 PM

Changes

Fix

  • remove router context caching (#6734) (eeb8c55) by Manuel Schiller

Packages

  • @​tanstack/solid-router@​1.162.4
  • @​tanstack/react-router@​1.162.4
  • @​tanstack/vue-router@​1.162.4
  • @​tanstack/solid-router-ssr-query@​1.162.4
  • @​tanstack/react-router-ssr-query@​1.162.4
  • @​tanstack/vue-router-ssr-query@​1.162.4
  • @​tanstack/zod-adapter@​1.162.4
  • @​tanstack/valibot-adapter@​1.162.4
  • @​tanstack/arktype-adapter@​1.162.4
  • @​tanstack/router-devtools@​1.162.4
  • @​tanstack/solid-router-devtools@​1.162.4
  • @​tanstack/react-router-devtools@​1.162.4
  • @​tanstack/vue-router-devtools@​1.162.4
  • @​tanstack/router-plugin@​1.162.4
  • @​tanstack/router-vite-plugin@​1.162.4
  • @​tanstack/solid-start@​1.162.4
  • @​tanstack/solid-start-client@​1.162.4
  • @​tanstack/solid-start-server@​1.162.4
  • @​tanstack/vue-start@​1.162.4
  • @​tanstack/vue-start-client@​1.162.4
  • @​tanstack/vue-start-server@​1.162.4
  • @​tanstack/react-start@​1.162.4
  • @​tanstack/react-start-client@​1.162.4
  • @​tanstack/react-start-server@​1.162.4
  • @​tanstack/start-plugin-core@​1.162.4
  • @​tanstack/start-static-server-functions@​1.162.4

v1.162.3

Version 1.162.3 - 2/22/26, 9:28 PM

Changes

Fix

  • avoid false positives in import protection (#6732) (53eb52a) by Manuel Schiller

Packages

  • @​tanstack/start-plugin-core@​1.162.3

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/router-plugin since your current version.


Updates @testing-library/jest-dom from 6.8.0 to 6.9.1

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.9.1

6.9.1 (2025-10-01)

Bug Fixes

v6.9.0

6.9.0 (2025-09-30)

Features

  • Add .toAppearBefore/.toAppearAfter matcher (#702) (95f870a)
Commits

Updates @testing-library/react from 16.3.0 to 16.3.2

Release notes

Sourced from @​testing-library/react's releases.

v16.3.2

16.3.2 (2026-01-19)

Bug Fixes

  • Update 'onCaughtError' type inference in 'RenderOptions' to work with React v19 (#1438) (f32bd1b)

v16.3.1

16.3.1 (2025-12-15)

Bug Fixes

Commits

Bumps the dev group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.10.2` | `4.11.1` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.27.1` | `7.28.5` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.4` | `2.4.4` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.29.7` | `2.29.8` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.55.0` | `1.58.2` |
| [@tanstack/router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/router-devtools) | `1.131.50` | `1.162.4` |
| [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.131.50` | `1.162.4` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.8.0` | `6.9.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.0` | `16.3.2` |
| [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `4.1.0` | `4.2.3` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.0` | `16.2.7` |
| [playwright](https://github.com/microsoft/playwright) | `1.55.0` | `1.58.2` |
| [rollup-plugin-webpack-stats](https://github.com/relative-ci/rollup-plugin-webpack-stats) | `2.1.4` | `2.1.11` |
| [sharp](https://github.com/lovell/sharp) | `0.34.4` | `0.34.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.1.11` | `7.3.1` |
| [vite-plugin-image-optimizer](https://github.com/FatehAK/vite-plugin-image-optimizer) | `2.0.2` | `2.0.3` |


Updates `@axe-core/playwright` from 4.10.2 to 4.11.1
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core-npm@v4.10.2...v4.11.1)

Updates `@babel/preset-react` from 7.27.1 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-react)

Updates `@biomejs/biome` from 2.2.4 to 2.4.4
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.4/packages/@biomejs/biome)

Updates `@changesets/cli` from 2.29.7 to 2.29.8
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/commits)

Updates `@playwright/test` from 1.55.0 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.55.0...v1.58.2)

Updates `@tanstack/router-devtools` from 1.131.50 to 1.162.4
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.162.4/packages/router-devtools)

Updates `@tanstack/router-plugin` from 1.131.50 to 1.162.4
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.162.4/packages/router-plugin)

Updates `@testing-library/jest-dom` from 6.8.0 to 6.9.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.8.0...v6.9.1)

Updates `@testing-library/react` from 16.3.0 to 16.3.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.0...v16.3.2)

Updates `@vitejs/plugin-react-swc` from 4.1.0 to 4.2.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react-swc@4.2.3/packages/plugin-react-swc)

Updates `lint-staged` from 16.2.0 to 16.2.7
- [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.2.0...v16.2.7)

Updates `playwright` from 1.55.0 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.55.0...v1.58.2)

Updates `rollup-plugin-webpack-stats` from 2.1.4 to 2.1.11
- [Release notes](https://github.com/relative-ci/rollup-plugin-webpack-stats/releases)
- [Commits](relative-ci/rollup-plugin-webpack-stats@v2.1.4...v2.1.11)

Updates `sharp` from 0.34.4 to 0.34.5
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](lovell/sharp@v0.34.4...v0.34.5)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

Updates `vite` from 7.1.11 to 7.3.1
- [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/v7.3.1/packages/vite)

Updates `vite-plugin-image-optimizer` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/FatehAK/vite-plugin-image-optimizer/releases)
- [Commits](FatehAK/vite-plugin-image-optimizer@v2.0.2...v2.0.3)

---
updated-dependencies:
- dependency-name: "@axe-core/playwright"
  dependency-version: 4.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@babel/preset-react"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@tanstack/router-devtools"
  dependency-version: 1.162.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@tanstack/router-plugin"
  dependency-version: 1.162.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 4.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: lint-staged
  dependency-version: 16.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: playwright
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: rollup-plugin-webpack-stats
  dependency-version: 2.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: sharp
  dependency-version: 0.34.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: vite
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: vite-plugin-image-optimizer
  dependency-version: 2.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
...

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 Feb 23, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Feb 23, 2026

Copy link
Copy Markdown

Deploying namesake with  Cloudflare Pages  Cloudflare Pages

Latest commit: 5ef571f
Status: ✅  Deploy successful!
Preview URL: https://74d8ed1d.namesake-639.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-dev-cfin.namesake-639.pages.dev

View logs

@changeset-bot

changeset-bot Bot commented Feb 23, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 5ef571f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions

Copy link
Copy Markdown
Contributor

Coverage Report

Status Category Percentage Covered / Total
🟢 Lines 83.64% (🎯 80%)
🟰 ±0%
8731 / 10438
🟢 Statements 83.64% (🎯 80%)
🟰 ±0%
8731 / 10438
🟢 Functions 78.01% (🎯 75%)
🟰 ±0%
394 / 505
🟢 Branches 86.62% (🎯 80%)
🟰 ±0%
965 / 1114
File CoverageNo changed files found.
Generated in workflow #1167 for commit 5ef571f by the Vitest Coverage Report Action

@kydecker kydecker closed this Feb 23, 2026
@dependabot @github

dependabot Bot commented on behalf of github Feb 23, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/dev-0a782fb6f7 branch February 23, 2026 16:46
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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