fix(deps): update all dependencies - #280
Conversation
8b0e696 to
bbf6440
Compare
bbf6440 to
f3f4bec
Compare
Bundle ReportChanges will increase total bundle size by 2.12kB (0.0%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: @soroush.tech/dev-esmAssets Changed:
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
870df0d to
a443cde
Compare
a443cde to
468a525
Compare
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
Benchmark resultsBaseline case:
|
| case | avg | p75 | alloc/iter | vs fastest |
|---|---|---|---|---|
| styled-system color() :: local-mjs | 442 ns | 442 ns | 248 B (+0.0%) | fastest |
| styled-system color() :: local-cjs | 444 ns | 444 ns | 248 B (least) | +0.4% |
| styled-system color() :: previous | 454 ns | 453 ns | 248 B (+0.0%) | +2.7% |
Two jobs failed on the Renovate batch (run 30956382172): - packages (design-system): jsdom 30 absolutizes relative lengths in getComputedStyle (2rem resolves to 32px, -0.025em to -0.4px), so all 35 toHaveStyle assertions written in rem/em failed. jest-dom 7 is not involved — its toHaveStyle is byte-identical to 6.9.1. Hold jsdom at 29.x in renovate.json and revert the five manifests that bumped it. - web: msw-storybook-addon 3.0.0 dropped the root `initialize` export and moved `mswLoader` to the /csf3 subpath as a factory, so all 80 storybook test files failed at import. Migrate .storybook/preview.tsx to the v3 API; v3 creates and starts the worker itself. Every publishable package changed in the refresh, so each gets a bump and its release-notes file: bench 2.2.0 (Node engine floor), design- system 1.2.0 and markdown 1.2.0 (React peer floors, plus mermaid for markdown), playwright-coverage 3.1.0 (@playwright/test peer floor), styled-system 5.8.1 and vite-plugin-msw-server 1.0.3 (dev-only). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |



This PR contains the following updates:
^5.20260714.1→^5.20260804.1^5.2.8→^5.3.0^5.2.10→^5.3.0^1.61.1→^1.62.1^1.61.1→^1.62.1^10.5.0→^10.5.6^10.5.0→^10.5.6^10.5.0→^10.5.6^10.5.0→^10.5.6^10.5.0→^10.5.6^10.5.0→^10.5.6^1.33.2→^1.33.3^5.101.2→^5.101.4^6.9.1→^7.0.0^14.6.1→^14.6.3^26.1.1→^26.1.2^19.2.17→^19.2.18^19.2.3→^19.2.4^8.64.0→^8.66.0^8.64.0→^8.66.0^6.0.3→^6.0.5^5.2.0→^6.0.5^1.18.1→^1.19.0^18.0.1→^18.1.0^43.1.1→^43.3.0^10.7.0→^10.8.0^10.7.0→^10.8.0^10.5.0→^10.5.6^17.7.0→^17.9.0^29.1.1→^30.0.1^11.4.0→^11.16.1^2.0.7→^3.0.0>=24.18.0→>=24.19.0^1.61.1→^1.62.1^3.9.5→^3.9.6^3.9.5→^3.9.6^19.0.0→^19.2.8^19.2.7→^19.2.8^19.2.7→^19.2.8^19.0.0→^19.2.8^19.2.7→^19.2.8^19.2.7→^19.2.8^10.5.0→^10.5.6^0.22.7→^0.22.14^8.64.0→^8.66.0^8.1.4→^8.2.0^7.3.6→^8.2.0^10.0.1→^11.0.0^4.110.0→^4.118.0Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v5.20260804.1Compare Source
v5.20260801.1Compare Source
v5.20260731.1Compare Source
v5.20260730.1Compare Source
v5.20260729.1Compare Source
v5.20260728.1Compare Source
v5.20260727.1Compare Source
v5.20260726.1Compare Source
v5.20260724.1Compare Source
v5.20260723.1Compare Source
v5.20260722.1Compare Source
v5.20260721.1Compare Source
v5.20260719.1Compare Source
v5.20260718.1Compare Source
v5.20260717.1Compare Source
v5.20260716.1Compare Source
v5.20260715.1Compare Source
fontsource/font-files (@fontsource-variable/jetbrains-mono)
v5.3.0Compare Source
fontsource/font-files (@fontsource-variable/space-grotesk)
v5.3.0Compare Source
microsoft/playwright (@playwright/test)
v1.62.1Compare Source
v1.62.0Compare Source
🧱 New component testing model
Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a
gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:
Pass a story type as a template argument to type-check its props, and use
update(props)/unmount()on the returned locator to re-render or tear down within a test.🛑 Cancel operations with AbortSignal
Most operations and web-first assertions now accept a
signaloption that takes anAbortSignal, letting youcancel long-running actions, navigations, waits, and assertions:
Providing a signal does not disable the default timeout; pass
timeout: 0to disable it.🖼️ WebP screenshots
expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a
.webpname:page.screenshot() and locator.screenshot() also accept
webpas atype,where quality
100(the default) is lossless and lower values use lossy compression.🧩 Custom test filtering with Reporter.preprocess()
New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:
🔁 Isolated retries
New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate'retries as soon as a worker is free;'isolated'runs all retries at the end,one by one in a single worker, to minimize interference with the rest of the suite:
New APIs
Browser and Context
credentialsincludes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.Actions
scrolloption ("auto"|"none") on actions to opt out of Playwright's automatic scroll-into-view.Network
Evaluation
Command line & MCP
playwright-cli, runnable vianpx playwright mcpandnpx playwright cli.Reporters
mergeFilesreporter option:Announcements
Browser Versions
This version was also tested against the following stable channels:
storybookjs/storybook (@storybook/addon-a11y)
v10.5.6Compare Source
@testing-library/jest-domto6.9.1- #35614, thanks @ndelangen!v10.5.5Compare Source
v10.5.4Compare Source
v10.5.3Compare Source
v10.5.2Compare Source
v10.5.1Compare Source
storybookjs/storybook (@storybook/addon-onboarding)
v10.5.6Compare Source
10.5.6
v10.5.5Compare Source
10.5.5
v10.5.4Compare Source
10.5.4
v10.5.3Compare Source
10.5.3
v10.5.2Compare Source
10.5.2
v10.5.1Compare Source
10.5.1
TanStack/form (@tanstack/react-form)
v1.33.3Compare Source
Patch Changes
TanStack/query (@tanstack/react-query)
v5.101.4Compare Source
Patch Changes
v5.101.3Compare Source
Patch Changes
7e3c822]:testing-library/jest-dom (@testing-library/jest-dom)
v7.0.0Compare Source
v6.10.0Compare Source
testing-library/user-event (@testing-library/user-event)
v14.6.3Compare Source
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.66.0Compare Source
🩹 Fixes
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.65.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.66.0Compare Source
This was a version bump only for parser 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.
v8.65.0Compare Source
🚀 Features
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
vitejs/vite-plugin-react (@vitejs/plugin-react)
v6.0.5Compare Source
Fixed the react compiler preset filter to be linear (#1353)
The improved filter in v6.0.3 was non-linear and caused a performance regression (#1349). The filter was changed to be linear to avoid that.
v6.0.4Compare Source
Fixed
$RefreshSig$ is not definederror when runningvite devwithNODE_ENV=productionWhen running
vite devwithNODE_ENV=production, the app errored with$RefreshSig$ is not defined.This error is now fixed.
axios/axios (axios)
v1.19.0Compare Source
This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.
chromaui/chromatic-cli (chromatic)
v18.1.0Compare Source
🚀 Enhancement
ctx#1417 (@codykaup)🐛 Bug Fix
Authors: 2
electron/electron (electron)
[
v43.3.0](https://redirect.github.com/e