Skip to content

Commit 40ef7e5

Browse files
chore(deps): update all non-major dependencies (minor) (#8599)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@eslint/compat](https://redirect.github.com/eslint/rewrite/tree/main/packages/compat#readme) ([source](https://redirect.github.com/eslint/rewrite/tree/HEAD/packages/compat)) | [`2.0.5` → `2.1.0`](https://renovatebot.com/diffs/npm/@eslint%2fcompat/2.0.5/2.1.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@eslint%2fcompat/2.1.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@eslint%2fcompat/2.0.5/2.1.0?slim=true) | | [@playwright/experimental-ct-react](https://playwright.dev) ([source](https://redirect.github.com/microsoft/playwright)) | [`1.59.1` → `1.60.0`](https://renovatebot.com/diffs/npm/@playwright%2fexperimental-ct-react/1.59.1/1.60.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2fexperimental-ct-react/1.60.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2fexperimental-ct-react/1.59.1/1.60.0?slim=true) | | [@playwright/test](https://playwright.dev) ([source](https://redirect.github.com/microsoft/playwright)) | [`1.59.1` → `1.60.0`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.59.1/1.60.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.60.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.59.1/1.60.0?slim=true) | | [chromatic](https://www.chromatic.com) ([source](https://redirect.github.com/chromaui/chromatic-cli)) | [`16.9.1` → `16.10.0`](https://renovatebot.com/diffs/npm/chromatic/16.9.1/16.10.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/chromatic/16.10.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/chromatic/16.9.1/16.10.0?slim=true) | | [cypress](https://cypress.io) ([source](https://redirect.github.com/cypress-io/cypress)) | [`15.14.2` → `15.15.0`](https://renovatebot.com/diffs/npm/cypress/15.14.2/15.15.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/cypress/15.15.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cypress/15.14.2/15.15.0?slim=true) | | [eslint-plugin-storybook](https://redirect.github.com/storybookjs/storybook/tree/next/code/lib/eslint-plugin#readme) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/lib/eslint-plugin)) | [`10.3.6` → `10.4.0`](https://renovatebot.com/diffs/npm/eslint-plugin-storybook/10.3.6/10.4.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-storybook/10.4.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-storybook/10.3.6/10.4.0?slim=true) | | [monocart-reporter](https://redirect.github.com/cenfun/monocart-reporter) | [`2.10.1` → `2.11.2`](https://renovatebot.com/diffs/npm/monocart-reporter/2.10.1/2.11.2) | ![age](https://developer.mend.io/api/mc/badges/age/npm/monocart-reporter/2.11.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/monocart-reporter/2.10.1/2.11.2?slim=true) | --- ### Release Notes <details> <summary>eslint/rewrite (@&#8203;eslint/compat)</summary> ### [`v2.1.0`](https://redirect.github.com/eslint/rewrite/blob/HEAD/packages/compat/CHANGELOG.md#210-2026-05-08) [Compare Source](https://redirect.github.com/eslint/rewrite/compare/d2dbf7b73d01505da89a69b7465e486d8a88aa8f...b8949534bf7f498d941007f3adc2740157965b49) ##### Features - Add new `includeIgnoreFile()` to config-helpers ([#&#8203;430](https://redirect.github.com/eslint/rewrite/issues/430)) ([9b51352](https://redirect.github.com/eslint/rewrite/commit/9b513529022834e72cccfa278ec7ba6e7f4e10c5)) </details> <details> <summary>microsoft/playwright (@&#8203;playwright/experimental-ct-react)</summary> ### [`v1.60.0`](https://redirect.github.com/microsoft/playwright/releases/tag/v1.60.0) [Compare Source](https://redirect.github.com/microsoft/playwright/compare/v1.59.1...v1.60.0) #### 🌐 HAR recording on Tracing [tracing.startHar()](https://playwright.dev/docs/api/class-tracing#tracing-start-har) / [tracing.stopHar()](https://playwright.dev/docs/api/class-tracing#tracing-stop-har) expose HAR recording as a first-class tracing API, with the same `content`, `mode` and `urlFilter` options as `recordHar`. The returned [Disposable](https://playwright.dev/docs/api/class-disposable) makes it easy to scope a recording with `await using`: ```js await using har = await context.tracing.startHar('trace.har'); const page = await context.newPage(); await page.goto('https://playwright.dev'); // HAR is finalized when `har` goes out of scope. ``` #### 🪝 Drop API New [locator.drop()](https://playwright.dev/docs/api/class-locator#locator-drop) simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches `dragenter`, `dragover`, and `drop` with a synthetic \[DataTransfer] in the page context — works cross-browser and is great for testing upload zones: ```js await page.locator('#dropzone').drop({ files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') }, }); await page.locator('#dropzone').drop({ data: { 'text/plain': 'hello world', 'text/uri-list': 'https://example.com', }, }); ``` #### 🎯 Aria snapshots - [expect(page).toMatchAriaSnapshot()](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-match-aria-snapshot) now works on a [Page](https://playwright.dev/docs/api/class-page), in addition to a [Locator](https://playwright.dev/docs/api/class-locator) — equivalent to asserting against `page.locator('body')`. - New `boxes` option on [locator.ariaSnapshot()](https://playwright.dev/docs/api/class-locator#locator-aria-snapshot) / [page.ariaSnapshot()](https://playwright.dev/docs/api/class-page#page-aria-snapshot) appends each element's bounding box as `[box=x,y,width,height]`, useful for AI consumption. #### 🛑 test.abort() New [test.abort()](https://playwright.dev/docs/api/class-test#test-abort) aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away: ```js test('does not publish to the shared page', async ({ page }) => { await page.route('**/publish', route => { test.abort('Tests must not publish to the shared page. Use the `clone` option.'); return route.abort(); }); // ... }); ``` #### New APIs ##### Browser, Context and Page - Event [browser.on('context')](https://playwright.dev/docs/api/class-browser#browser-event-context) — fired when a new context is created on the browser. - [BrowserContext](https://playwright.dev/docs/api/class-browsercontext) now mirrors lifecycle events from its pages: [browserContext.on('download')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-download), [browserContext.on('frameattached')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-frame-attached), [browserContext.on('framedetached')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-frame-detached), [browserContext.on('framenavigated')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-frame-navigated), [browserContext.on('pageclose')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-page-close), [browserContext.on('pageload')](https://playwright.dev/docs/api/class-browsercontext#browser-context-event-page-load). ##### Locators and Assertions - New option `description` in [page.getByRole()](https://playwright.dev/docs/api/class-page#page-get-by-role) / [locator.getByRole()](https://playwright.dev/docs/api/class-locator#locator-get-by-role) / [frame.getByRole()](https://playwright.dev/docs/api/class-frame#frame-get-by-role) / [frameLocator.getByRole()](https://playwright.dev/docs/api/class-framelocator#frame-locator-get-by-role) for matching the [accessible description](https://www.w3.org/TR/wai-aria-1.2/#dfn-accessible-description). - New option `pseudo` in [expect(locator).toHaveCSS()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-css) reads computed styles from `::before` or `::after`. - New option `style` in [locator.highlight()](https://playwright.dev/docs/api/class-locator#locator-highlight) applies extra inline CSS to the highlight overlay, plus new [page.hideHighlight()](https://playwright.dev/docs/api/class-page#page-hide-highlight) to clear all highlights. ##### Network - [webSocketRoute.protocols()](https://playwright.dev/docs/api/class-websocketroute#web-socket-route-protocols) returns the WebSocket subprotocols requested by the page. - New option `noDefaults` in [browserType.connectOverCDP()](https://playwright.dev/docs/api/class-browsertype#browser-type-connect-over-cdp) disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state. ##### Errors and Reporting - New [webError.location()](https://playwright.dev/docs/api/class-weberror#web-error-location) mirrors [consoleMessage.location()](https://playwright.dev/docs/api/class-consolemessage#console-message-location). - [consoleMessage.location()](https://playwright.dev/docs/api/class-consolemessage#console-message-location) now exposes `line` / `column` properties (`lineNumber` / `columnNumber` are deprecated). - New [testInfoError.errorContext](https://playwright.dev/docs/api/class-testinfoerror#test-info-error-error-context) surfaces additional diagnostic context, such as the aria snapshot of the receiver at the time of an `expect(...)` matcher failure. - [reporter.onError()](https://playwright.dev/docs/api/class-reporter#reporter-on-error) now receives a `workerInfo` argument with details about the worker for fixture teardown errors. ##### Test runner - New `{testFileBaseName}` token in [testProject.snapshotPathTemplate](https://playwright.dev/docs/api/class-testproject#test-project-snapshot-path-template) — file name without extension. - Test runner now errors when a config tries to override a non-option fixture, and rejects `workers: 0` or negative values. #### 🛠️ Other improvements - HTML reporter: - `npx playwright show-report` accepts `.zip` files directly — no need to unzip first. - Steps that contain attachments inside nested children show an indicator on the parent step. - The `repeatEachIndex` is shown in the test header when non-zero. - Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel. #### Breaking Changes ⚠️ - Removed long-deprecated APIs: - `Locator.ariaRef()` — use the standard [locator.ariaSnapshot()](https://playwright.dev/docs/api/class-locator#locator-aria-snapshot) pipeline. - `handle` option on `BrowserContext.exposeBinding` and `Page.exposeBinding`. - `logger` option on `BrowserType.connect` and `BrowserType.connectOverCDP` — use [tracing](https://playwright.dev/docs/trace-viewer) instead. - Context options `videosPath` / `videoSize` — use `recordVideo` instead. #### Browser Versions - Chromium 148.0.7778.96 - Mozilla Firefox 150.0.2 - WebKit 26.4 This version was also tested against the following stable channels: - Google Chrome 147 - Microsoft Edge 147 </details> <details> <summary>chromaui/chromatic-cli (chromatic)</summary> ### [`v16.10.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v16100-Mon-May-11-2026) [Compare Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v16.9.1...v16.10.0) ##### 🚀 Enhancement - Add `share()` to Node API [#&#8203;1284](https://redirect.github.com/chromaui/chromatic-cli/pull/1284) ([@&#8203;codykaup](https://redirect.github.com/codykaup) [@&#8203;katiebayes](https://redirect.github.com/katiebayes)) ##### 🐛 Bug Fix - Migrate `gitInfo` task to typed inputs and outputs [#&#8203;1314](https://redirect.github.com/chromaui/chromatic-cli/pull/1314) ([@&#8203;justin-thurman](https://redirect.github.com/justin-thurman)) - Add config option for building multiple Android architectures [#&#8203;1321](https://redirect.github.com/chromaui/chromatic-cli/pull/1321) ([@&#8203;jmhobbs](https://redirect.github.com/jmhobbs)) ##### Authors: 4 - Cody Kaup ([@&#8203;codykaup](https://redirect.github.com/codykaup)) - John Hobbs ([@&#8203;jmhobbs](https://redirect.github.com/jmhobbs)) - Justin Thurman ([@&#8203;justin-thurman](https://redirect.github.com/justin-thurman)) - Katie Bayes ([@&#8203;katiebayes](https://redirect.github.com/katiebayes)) *** </details> <details> <summary>cypress-io/cypress (cypress)</summary> ### [`v15.15.0`](https://redirect.github.com/cypress-io/cypress/releases/tag/v15.15.0) [Compare Source](https://redirect.github.com/cypress-io/cypress/compare/v15.14.2...v15.15.0) Changelog: <https://docs.cypress.io/app/references/changelog#15-15-0> </details> <details> <summary>storybookjs/storybook (eslint-plugin-storybook)</summary> ### [`v10.4.0`](https://redirect.github.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#1040) [Compare Source](https://redirect.github.com/storybookjs/storybook/compare/v10.3.6...v10.4.0) > *AI-assisted setup, change-aware review, and stronger framework support* Storybook 10.4 contains hundreds of fixes and improvements including: - 🤖 Agentic Setup: New CLI workflow for AI-assisted Storybook setup and onboarding - 🔍 Change review: Sidebar filtering to highlight new, modified, and related stories based on git changes - 🧭 Sidebar review tools: Status filtering, URL-persisted filters, and clearer review signals in the sidebar - ⚛️ TanStack React: New `@storybook/tanstack-react` framework with routing and server function support - 🧩 React MCP: Faster, more accurate component docgen powered by the TypeScript Language Server - 📱 React Native: Zero config RN project initialization - 🤝 Sharing: Easily publish and share your local Storybook with teammates, powered by Chromatic <details> <summary>List of all updates</summary> - A11y: Add aria-live announcements via [@&#8203;react-aria/live-announcer](https://redirect.github.com/react-aria/live-announcer) - [#&#8203;33970](https://redirect.github.com/storybookjs/storybook/pull/33970), thanks [@&#8203;copilot-swe-agent](https://redirect.github.com/copilot-swe-agent)! - A11y: Improve boolean control contrast in forced colors mode - [#&#8203;34204](https://redirect.github.com/storybookjs/storybook/pull/34204), thanks [@&#8203;anchmelev](https://redirect.github.com/anchmelev)! - Actions: Fix state mutation and keep newest actions when limit reached - [#&#8203;34286](https://redirect.github.com/storybookjs/storybook/pull/34286), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Addon-Docs: Add Reset story button to re-render stories in docs - [#&#8203;34086](https://redirect.github.com/storybookjs/storybook/pull/34086), thanks [@&#8203;6810779s](https://redirect.github.com/6810779s)! - Addon-Docs: Avoid rerendering static Source blocks - [#&#8203;34206](https://redirect.github.com/storybookjs/storybook/pull/34206), thanks [@&#8203;anchmelev](https://redirect.github.com/anchmelev)! - Addon-Vitest: Use Vitest's provide-API for injecting values - [#&#8203;34518](https://redirect.github.com/storybookjs/storybook/pull/34518), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Agentic Setup: Add --extensive for an extra prompt - [#&#8203;34730](https://redirect.github.com/storybookjs/storybook/pull/34730), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Agentic Setup: Allow failed stories to persist - [#&#8203;34717](https://redirect.github.com/storybookjs/storybook/pull/34717), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Agentic Setup: Keep sample content if users want onboarding - [#&#8203;34704](https://redirect.github.com/storybookjs/storybook/pull/34704), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Agentic Setup: Rework ai-init-opt-in logic - [#&#8203;34739](https://redirect.github.com/storybookjs/storybook/pull/34739), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Angular: Use Story ID for renderer IDs (including standalone stories) - [#&#8203;33982](https://redirect.github.com/storybookjs/storybook/pull/33982), thanks [@&#8203;ValentinFunk](https://redirect.github.com/ValentinFunk)! - Automigration: Move RN on-device addons to `deviceAddons` - [#&#8203;34659](https://redirect.github.com/storybookjs/storybook/pull/34659), thanks [@&#8203;ndelangen](https://redirect.github.com/ndelangen)! - Builder-Vite: Add onModuleGraphChange method - [#&#8203;34323](https://redirect.github.com/storybookjs/storybook/pull/34323), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - CLI: Add automigrate check for 'storybook' package name conflict - [#&#8203;34290](https://redirect.github.com/storybookjs/storybook/pull/34290), thanks [@&#8203;whdjh](https://redirect.github.com/whdjh)! - CLI: Add react-vite to tanstack-react automigration - [#&#8203;34718](https://redirect.github.com/storybookjs/storybook/pull/34718), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - CLI: Change mock event detection - [#&#8203;34586](https://redirect.github.com/storybookjs/storybook/pull/34586), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - CLI: Explicitly tell whether smoke tests passed or failed - [#&#8203;34419](https://redirect.github.com/storybookjs/storybook/pull/34419), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - CLI: Fix Next.js Vite automigration corrupting configs already using `@storybook/nextjs-vite` - [#&#8203;34249](https://redirect.github.com/storybookjs/storybook/pull/34249), thanks [@&#8203;nathanjessen](https://redirect.github.com/nathanjessen)! - CLI: Fix agentic check - [#&#8203;34678](https://redirect.github.com/storybookjs/storybook/pull/34678), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - CLI: Handle minimumReleaseAge conflicts across package managers - [#&#8203;34769](https://redirect.github.com/storybookjs/storybook/pull/34769), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - CLI: Improve package incompatibility detection and warning - [#&#8203;34559](https://redirect.github.com/storybookjs/storybook/pull/34559), thanks [@&#8203;copilot-swe-agent](https://redirect.github.com/copilot-swe-agent)! - CLI: Improve self-healing scoring observability - [#&#8203;34699](https://redirect.github.com/storybookjs/storybook/pull/34699), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - CLI: Introduce Agentic Setup workflow - [#&#8203;34297](https://redirect.github.com/storybookjs/storybook/pull/34297), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - CLI: Remove extensive prompt option - [#&#8203;34740](https://redirect.github.com/storybookjs/storybook/pull/34740), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - CLI: Streamline Node.js version detection code - [#&#8203;34440](https://redirect.github.com/storybookjs/storybook/pull/34440), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Change-Detection: Set GIT\_OPTIONAL\_LOCKS=0 to avoid blocking commits - [#&#8203;34726](https://redirect.github.com/storybookjs/storybook/pull/34726), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Cli: Set ai prompt to yes if yes flag for react-vite to tanstack migration - [#&#8203;34743](https://redirect.github.com/storybookjs/storybook/pull/34743), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - Code: Fix inline code blocks inside links removing link affordance - [#&#8203;33903](https://redirect.github.com/storybookjs/storybook/pull/33903), thanks [@&#8203;yatishgoel](https://redirect.github.com/yatishgoel)! - Controls: Add maxPresetColors option to ColorControl - [#&#8203;33998](https://redirect.github.com/storybookjs/storybook/pull/33998), thanks [@&#8203;mixelburg](https://redirect.github.com/mixelburg)! - Core: Add `ChangeDetectionService` and wire up builder-vite - [#&#8203;34369](https://redirect.github.com/storybookjs/storybook/pull/34369), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Core: Add changeDetection feature flag - [#&#8203;34314](https://redirect.github.com/storybookjs/storybook/pull/34314), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Core: Barrel-aware named import resolution for change detection - [#&#8203;34675](https://redirect.github.com/storybookjs/storybook/pull/34675), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Core: Ensure process termination on SIGINT when telemetry is disabled - [#&#8203;34585](https://redirect.github.com/storybookjs/storybook/pull/34585), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Core: Fix "Open In Editor" support for VSCode - [#&#8203;34747](https://redirect.github.com/storybookjs/storybook/pull/34747), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Core: Fix telemetry not handling canceling of prompts - [#&#8203;34680](https://redirect.github.com/storybookjs/storybook/pull/34680), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Core: Implement Git change detection - [#&#8203;34420](https://redirect.github.com/storybookjs/storybook/pull/34420), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Core: Improve startup performance by deferring change detection initialization - [#&#8203;34498](https://redirect.github.com/storybookjs/storybook/pull/34498), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Core: Normalize file paths in ChangeDetectionService and trace-changed for Windows support - [#&#8203;34445](https://redirect.github.com/storybookjs/storybook/pull/34445), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Core: Quiet change-detection regex warning and swap clear icon - [#&#8203;34758](https://redirect.github.com/storybookjs/storybook/pull/34758), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Core: Rename preview\.ts to preview\.tsx in generated projects - [#&#8203;34396](https://redirect.github.com/storybookjs/storybook/pull/34396), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - Core: Show "new" status on newly added individual stories - [#&#8203;34504](https://redirect.github.com/storybookjs/storybook/pull/34504), thanks [@&#8203;ghengeveld](https://redirect.github.com/ghengeveld)! - Dependencies: Update `vite-plugin-storybook-nextjs` to ^3.2.4 - [#&#8203;34280](https://redirect.github.com/storybookjs/storybook/pull/34280), thanks [@&#8203;k35o](https://redirect.github.com/k35o)! - Docs: Ensure unique control id attributes across multiple Controls blocks - [#&#8203;34021](https://redirect.github.com/storybookjs/storybook/pull/34021), thanks [@&#8203;TheSeydiCharyyev](https://redirect.github.com/TheSeydiCharyyev)! - Fix ArgsTable borders not visible in Windows High Contrast Mode - [#&#8203;34264](https://redirect.github.com/storybookjs/storybook/pull/34264), thanks [@&#8203;TheSeydiCharyyev](https://redirect.github.com/TheSeydiCharyyev)! - Fix: Add vite-plus vendored libraries version detection - [#&#8203;34509](https://redirect.github.com/storybookjs/storybook/pull/34509), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - MDX: Replace `@storybook/docs-mdx` with inline implementation - [#&#8203;34611](https://redirect.github.com/storybookjs/storybook/pull/34611), thanks [@&#8203;copilot-swe-agent](https://redirect.github.com/copilot-swe-agent)! - Maintenance: Add assertions outside step incorrectly nested in interactions panel - [#&#8203;34296](https://redirect.github.com/storybookjs/storybook/pull/34296), thanks [@&#8203;majiayu000](https://redirect.github.com/majiayu000)! - Maintenance: Enhance ghost stories internal tests - [#&#8203;34707](https://redirect.github.com/storybookjs/storybook/pull/34707), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - Maintenance: Extract getBuilderOptions helper across framewo… - [#&#8203;34260](https://redirect.github.com/storybookjs/storybook/pull/34260), thanks [@&#8203;alex-js-ltd](https://redirect.github.com/alex-js-ltd)! - Maintenance: Extract parseFilterParam shared helper from tags and statuses modules - [#&#8203;34436](https://redirect.github.com/storybookjs/storybook/pull/34436), thanks [@&#8203;mixelburg](https://redirect.github.com/mixelburg)! - Maintenance: Fix self healing payload - [#&#8203;34782](https://redirect.github.com/storybookjs/storybook/pull/34782), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - Maintenance: Remove dead-code copy of wrap-getAbsolutePath-utils - [#&#8203;34168](https://redirect.github.com/storybookjs/storybook/pull/34168), thanks [@&#8203;mixelburg](https://redirect.github.com/mixelburg)! - Maintenance: Use errorToErrorLike in boot-test-runner for consistent stack deduplication - [#&#8203;34385](https://redirect.github.com/storybookjs/storybook/pull/34385), thanks [@&#8203;mixelburg](https://redirect.github.com/mixelburg)! - Manager: URL-based tag filter state + filter-aware initial story selection - [#&#8203;34283](https://redirect.github.com/storybookjs/storybook/pull/34283), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Nextjs: Handle node builtin webpack imports - [#&#8203;34494](https://redirect.github.com/storybookjs/storybook/pull/34494), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Onboarding: Fix checklist MDX instructions - [#&#8203;33193](https://redirect.github.com/storybookjs/storybook/pull/33193), thanks [@&#8203;kylegach](https://redirect.github.com/kylegach)! - Prompt: Run vitest fewer times, improve play functions - [#&#8203;34651](https://redirect.github.com/storybookjs/storybook/pull/34651), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - React-Docgen: Add tsconfig fallback chain and warning for monorepos - [#&#8203;34353](https://redirect.github.com/storybookjs/storybook/pull/34353), thanks [@&#8203;viditkbhatnagar](https://redirect.github.com/viditkbhatnagar)! - React: Add component metadata extraction via Volar-style LanguageService - [#&#8203;33914](https://redirect.github.com/storybookjs/storybook/pull/33914), thanks [@&#8203;kasperpeulen](https://redirect.github.com/kasperpeulen)! - React: Add subcomponents to component manifests - [#&#8203;34428](https://redirect.github.com/storybookjs/storybook/pull/34428), thanks [@&#8203;kasperpeulen](https://redirect.github.com/kasperpeulen)! - ReactNative: Add Metro config AST codemod for init - [#&#8203;34660](https://redirect.github.com/storybookjs/storybook/pull/34660), thanks [@&#8203;ndelangen](https://redirect.github.com/ndelangen)! - ReactNative: Add true entrypoint generation - [#&#8203;34663](https://redirect.github.com/storybookjs/storybook/pull/34663), thanks [@&#8203;ndelangen](https://redirect.github.com/ndelangen)! - ReactNative: AppRegistry component name in template - [#&#8203;34742](https://redirect.github.com/storybookjs/storybook/pull/34742), thanks [@&#8203;ndelangen](https://redirect.github.com/ndelangen)! - ReactNative: New init setup - [#&#8203;34665](https://redirect.github.com/storybookjs/storybook/pull/34665), thanks [@&#8203;ndelangen](https://redirect.github.com/ndelangen)! - Refactor: Extract shared `PseudoStateGrid` component in pseudo-states stories - [#&#8203;34334](https://redirect.github.com/storybookjs/storybook/pull/34334), thanks [@&#8203;copilot-swe-agent](https://redirect.github.com/copilot-swe-agent)! - Security: Makes sure `serialize-javascript` is at latest version - [#&#8203;34034](https://redirect.github.com/storybookjs/storybook/pull/34034), thanks [@&#8203;50bbx](https://redirect.github.com/50bbx)! - Sidebar: Add dual-slot status icons for change detection and test results - [#&#8203;34346](https://redirect.github.com/storybookjs/storybook/pull/34346), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Sidebar: Add status-based filtering with refactored status architecture - [#&#8203;34339](https://redirect.github.com/storybookjs/storybook/pull/34339), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Sidebar: Fix clear filter button not refreshing story list - [#&#8203;34737](https://redirect.github.com/storybookjs/storybook/pull/34737), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Sidebar: Fix clear status button to only clear test statuses - [#&#8203;34478](https://redirect.github.com/storybookjs/storybook/pull/34478), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Sidebar: Show same status icon at story and group level - [#&#8203;34702](https://redirect.github.com/storybookjs/storybook/pull/34702), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Sidebar: Soften change-detection signals + add Review CTA - [#&#8203;34701](https://redirect.github.com/storybookjs/storybook/pull/34701), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - StatusValue: Add 'status-value:\<new|modified|affected>' - [#&#8203;34305](https://redirect.github.com/storybookjs/storybook/pull/34305), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Svelte: Fix Vite 8 + Vitest breaking rolldown deps scanner - [#&#8203;34783](https://redirect.github.com/storybookjs/storybook/pull/34783), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Tanstack: Add `@storybook/tanstack-react` package - [#&#8203;34403](https://redirect.github.com/storybookjs/storybook/pull/34403), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - Tanstack: Optimize tanstack react-store - [#&#8203;34731](https://redirect.github.com/storybookjs/storybook/pull/34731), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - Tanstack: Treeshake top-level unused functions - [#&#8203;34760](https://redirect.github.com/storybookjs/storybook/pull/34760), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - Telemetry: Add sidebar filter telemetry for change detection - [#&#8203;34533](https://redirect.github.com/storybookjs/storybook/pull/34533), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Telemetry: Centralize disable logic with module-level flag - [#&#8203;34485](https://redirect.github.com/storybookjs/storybook/pull/34485), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - Telemetry: Fix delayed init events - [#&#8203;34670](https://redirect.github.com/storybookjs/storybook/pull/34670), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Telemetry: Refactor init tracking - [#&#8203;34629](https://redirect.github.com/storybookjs/storybook/pull/34629), thanks [@&#8203;Programer1804](https://redirect.github.com/Programer1804)! - UI: Add Share section to onboarding checklist and redesign share tool - [#&#8203;34413](https://redirect.github.com/storybookjs/storybook/pull/34413), thanks [@&#8203;valentinpalkovic](https://redirect.github.com/valentinpalkovic)! - UI: Ensure Controls panel can scroll horizontally for now - [#&#8203;34248](https://redirect.github.com/storybookjs/storybook/pull/34248), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - UI: Fix global shortcuts not showing region focus indicator - [#&#8203;34201](https://redirect.github.com/storybookjs/storybook/pull/34201), thanks [@&#8203;Sidnioulz](https://redirect.github.com/Sidnioulz)! - UI: Fix mobile navigation when renderLabel returns a React node - [#&#8203;34262](https://redirect.github.com/storybookjs/storybook/pull/34262), thanks [@&#8203;Nathan54Villaume](https://redirect.github.com/Nathan54Villaume)! - UI: Fix showing and hiding copy prompt in the correct scenarios - [#&#8203;34706](https://redirect.github.com/storybookjs/storybook/pull/34706), thanks [@&#8203;yannbf](https://redirect.github.com/yannbf)! - UI: Improve interactions panel accessibility - [#&#8203;34110](https://redirect.github.com/storybookjs/storybook/pull/34110), thanks [@&#8203;anchmelev](https://redirect.github.com/anchmelev)! - Vite: Use vite hook filter for performance improvements - [#&#8203;34022](https://redirect.github.com/storybookjs/storybook/pull/34022), thanks [@&#8203;huang-julien](https://redirect.github.com/huang-julien)! - Vitest: Fix agent detection breaking runs - [#&#8203;34681](https://redirect.github.com/storybookjs/storybook/pull/34681), thanks [@&#8203;JReinhold](https://redirect.github.com/JReinhold)! - Vue3: Clear stale args/globals when nextArgs is empty in updateArgs - [#&#8203;34409](https://redirect.github.com/storybookjs/storybook/pull/34409), thanks [@&#8203;whdjh](https://redirect.github.com/whdjh)! </details> </details> <details> <summary>cenfun/monocart-reporter (monocart-reporter)</summary> ### [`v2.11.2`](https://redirect.github.com/cenfun/monocart-reporter/compare/2.11.1...2.11.2) [Compare Source](https://redirect.github.com/cenfun/monocart-reporter/compare/2.11.1...2.11.2) ### [`v2.11.1`](https://redirect.github.com/cenfun/monocart-reporter/compare/2.11.0...2.11.1) [Compare Source](https://redirect.github.com/cenfun/monocart-reporter/compare/2.11.0...2.11.1) ### [`v2.11.0`](https://redirect.github.com/cenfun/monocart-reporter/compare/2.10.1...2.11.0) [Compare Source](https://redirect.github.com/cenfun/monocart-reporter/compare/2.10.1...2.11.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/UI5/webcomponents-react). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzkuMyIsInVwZGF0ZWRJblZlciI6IjQzLjE3OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 182b439 commit 40ef7e5

2 files changed

Lines changed: 69 additions & 70 deletions

File tree

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
"@babel/preset-react": "7.28.5",
6767
"@babel/preset-typescript": "7.28.5",
6868
"@cypress/code-coverage": "4.0.3",
69-
"@eslint/compat": "2.0.5",
69+
"@eslint/compat": "2.1.0",
7070
"@eslint/js": "9.39.4",
71-
"@playwright/experimental-ct-react": "1.59.1",
72-
"@playwright/test": "1.59.1",
71+
"@playwright/experimental-ct-react": "1.60.0",
72+
"@playwright/test": "1.60.0",
7373
"@semantic-release/github": "12.0.8",
7474
"@testing-library/cypress": "10.1.3",
7575
"@types/jscodeshift": "17.3.0",
@@ -78,9 +78,9 @@
7878
"@types/react-dom": "19.2.3",
7979
"@ui5/webcomponents-tools": "2.22.0",
8080
"@vitejs/plugin-react": "6.0.2",
81-
"chromatic": "16.9.1",
81+
"chromatic": "16.10.0",
8282
"cssnano": "8.0.1",
83-
"cypress": "15.14.2",
83+
"cypress": "15.15.0",
8484
"cypress-real-events": "1.15.0",
8585
"dedent": "1.7.2",
8686
"documentation": "14.0.3",
@@ -92,13 +92,13 @@
9292
"eslint-plugin-prettier": "5.5.5",
9393
"eslint-plugin-react": "7.37.5",
9494
"eslint-plugin-react-hooks": "7.1.1",
95-
"eslint-plugin-storybook": "10.3.6",
95+
"eslint-plugin-storybook": "10.4.0",
9696
"glob": "13.0.6",
9797
"globals": "17.6.0",
9898
"husky": "9.1.7",
9999
"lerna": "9.0.7",
100100
"lint-staged": "17.0.4",
101-
"monocart-reporter": "2.10.1",
101+
"monocart-reporter": "2.11.2",
102102
"npm-run-all2": "8.0.4",
103103
"pagefind": "1.5.2",
104104
"postcss": "8.5.14",

yarn.lock

Lines changed: 62 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,9 +1377,9 @@ __metadata:
13771377
languageName: node
13781378
linkType: hard
13791379

1380-
"@cypress/request@npm:^3.0.10":
1381-
version: 3.0.10
1382-
resolution: "@cypress/request@npm:3.0.10"
1380+
"@cypress/request@npm:^4.0.0":
1381+
version: 4.0.0
1382+
resolution: "@cypress/request@npm:4.0.0"
13831383
dependencies:
13841384
aws-sign2: "npm:~0.7.0"
13851385
aws4: "npm:^1.8.0"
@@ -1398,8 +1398,7 @@ __metadata:
13981398
safe-buffer: "npm:^5.1.2"
13991399
tough-cookie: "npm:^5.0.0"
14001400
tunnel-agent: "npm:^0.6.0"
1401-
uuid: "npm:^8.3.2"
1402-
checksum: 10c0/93da9754315261474deeefff235ed0397811d49f03f2dfcebd01aff12b75fd58e104b0c7fd3d720e1ebc51d73059e1f540db68c58bbda4612493610227ade710
1401+
checksum: 10c0/f85502209aa3a4097e598bdd85b9f1c728ee2758fdbee8cafd5fe22d46ab625082df2957c166f6320adbf7698afa2871005b3dfa3dbddc676bf056144e072ebe
14031402
languageName: node
14041403
linkType: hard
14051404

@@ -2230,17 +2229,17 @@ __metadata:
22302229
languageName: node
22312230
linkType: hard
22322231

2233-
"@eslint/compat@npm:2.0.5":
2234-
version: 2.0.5
2235-
resolution: "@eslint/compat@npm:2.0.5"
2232+
"@eslint/compat@npm:2.1.0":
2233+
version: 2.1.0
2234+
resolution: "@eslint/compat@npm:2.1.0"
22362235
dependencies:
22372236
"@eslint/core": "npm:^1.2.1"
22382237
peerDependencies:
22392238
eslint: ^8.40 || 9 || 10
22402239
peerDependenciesMeta:
22412240
eslint:
22422241
optional: true
2243-
checksum: 10c0/c6e16c5bd826535dc84b6dfd4cfa8079ac564f6dc614b164e2f2e708e940d6efa9f3754fa6ddaace04b43d296c190aabbad4231c074f6269afab88d7e7b005a8
2242+
checksum: 10c0/05b9e54813f124c45a8142571dbc539ea06bfc70a21e28c5d39a145578a62c733a9029850b89e357ee5924b1ea19611bf4d7cfe894595028730f691b86e9815b
22442243
languageName: node
22452244
linkType: hard
22462245

@@ -3952,37 +3951,37 @@ __metadata:
39523951
languageName: node
39533952
linkType: hard
39543953

3955-
"@playwright/experimental-ct-core@npm:1.59.1":
3956-
version: 1.59.1
3957-
resolution: "@playwright/experimental-ct-core@npm:1.59.1"
3954+
"@playwright/experimental-ct-core@npm:1.60.0":
3955+
version: 1.60.0
3956+
resolution: "@playwright/experimental-ct-core@npm:1.60.0"
39583957
dependencies:
3959-
playwright: "npm:1.59.1"
3960-
playwright-core: "npm:1.59.1"
3958+
playwright: "npm:1.60.0"
3959+
playwright-core: "npm:1.60.0"
39613960
vite: "npm:^6.4.1"
3962-
checksum: 10c0/085b3de8173bef25513c0ba571dc456017fe69844e8a5a0b3c746b6d3726c487129b998bf85dba9527e0f3b90fe924c050c07a21ddeac5f8d33b407950e75562
3961+
checksum: 10c0/3379980d77676eb6127afb329f806f722f59e87b7a51e639f4fc8e6907705fceb3153cf55fbc2aec9a7d1ed15c01d7130a823df8b94695e6f369ad36b3770d0c
39633962
languageName: node
39643963
linkType: hard
39653964

3966-
"@playwright/experimental-ct-react@npm:1.59.1":
3967-
version: 1.59.1
3968-
resolution: "@playwright/experimental-ct-react@npm:1.59.1"
3965+
"@playwright/experimental-ct-react@npm:1.60.0":
3966+
version: 1.60.0
3967+
resolution: "@playwright/experimental-ct-react@npm:1.60.0"
39693968
dependencies:
3970-
"@playwright/experimental-ct-core": "npm:1.59.1"
3969+
"@playwright/experimental-ct-core": "npm:1.60.0"
39713970
"@vitejs/plugin-react": "npm:^4.2.1"
39723971
bin:
39733972
playwright: cli.js
3974-
checksum: 10c0/af4429b252a4f6bb5d73db3bec11cedd63f708dacb14867672ff331412be6c7b90a2c9355ec93d49e45343365b55f3e81d2f9fc588816e01d944fb8081ab7929
3973+
checksum: 10c0/264b3276330a6a05e15a906d62e3f040eb8f3c989175ece439f9156efc2b9788af17eae66a74d6bb8438583b10ec4becb2102eafe103b91281a4adad4accf21c
39753974
languageName: node
39763975
linkType: hard
39773976

3978-
"@playwright/test@npm:1.59.1":
3979-
version: 1.59.1
3980-
resolution: "@playwright/test@npm:1.59.1"
3977+
"@playwright/test@npm:1.60.0":
3978+
version: 1.60.0
3979+
resolution: "@playwright/test@npm:1.60.0"
39813980
dependencies:
3982-
playwright: "npm:1.59.1"
3981+
playwright: "npm:1.60.0"
39833982
bin:
39843983
playwright: cli.js
3985-
checksum: 10c0/8c2d94a860d3c254a0b114df2f888ad0a0e9310f45b6059bd5d4da196d965cadf6922267cef0881cfa9784d4bef6d78363d2c2d94caa64be67ff644c41162137
3984+
checksum: 10c0/86b06e6437933e741c7cd43f362024e857e7bc28a55fcbb0553ef55e01a2a403c64f4786868de8af86a6e303fe99e98a18a42ba19489f43ae122e457f9e2d189
39863985
languageName: node
39873986
linkType: hard
39883987

@@ -8349,9 +8348,9 @@ __metadata:
83498348
languageName: node
83508349
linkType: hard
83518350

8352-
"chromatic@npm:16.9.1":
8353-
version: 16.9.1
8354-
resolution: "chromatic@npm:16.9.1"
8351+
"chromatic@npm:16.10.0":
8352+
version: 16.10.0
8353+
resolution: "chromatic@npm:16.10.0"
83558354
dependencies:
83568355
semver: "npm:^7.3.5"
83578356
peerDependencies:
@@ -8369,7 +8368,7 @@ __metadata:
83698368
chroma: dist/bin.cjs
83708369
chromatic: dist/bin.cjs
83718370
chromatic-cli: dist/bin.cjs
8372-
checksum: 10c0/b0badbfc71ca4eebbad86f43814c523afc42637fa342727e65a1b8c5f10271eb0bb91a3fbfd5e1412d62190bcacf612cf1ecc459f99cd03faba8bfe84a815fd9
8371+
checksum: 10c0/4867da7b0512c6c86b00b7e633908e90594b893801202577d76849d9b0ba61c716dfa7479dcb5c0786665b7fe6560ede262ad6a16696fc74c2240cc6d5bf485c
83738372
languageName: node
83748373
linkType: hard
83758374

@@ -9326,11 +9325,11 @@ __metadata:
93269325
languageName: node
93279326
linkType: hard
93289327

9329-
"cypress@npm:15.14.2":
9330-
version: 15.14.2
9331-
resolution: "cypress@npm:15.14.2"
9328+
"cypress@npm:15.15.0":
9329+
version: 15.15.0
9330+
resolution: "cypress@npm:15.15.0"
93329331
dependencies:
9333-
"@cypress/request": "npm:^3.0.10"
9332+
"@cypress/request": "npm:^4.0.0"
93349333
"@cypress/xvfb": "npm:^1.2.4"
93359334
"@types/sinonjs__fake-timers": "npm:8.1.1"
93369335
"@types/sizzle": "npm:^2.3.2"
@@ -9372,7 +9371,7 @@ __metadata:
93729371
yauzl: "npm:^2.10.0"
93739372
bin:
93749373
cypress: bin/cypress
9375-
checksum: 10c0/d68ddc88004739f3d08babb373c156c0c037f2ff4bf25ec2062755cdd77e62f653b4ceac97ee91e797fadc15597f3afdca834f984f34de35fcacf095e9b9c8a2
9374+
checksum: 10c0/991d19140f86dbe02fd52300eccb04d1b33ce646a0c4db10e2fb7c09e144aa67b26b12c67501305756c5220ff63cb927b845cb63a2346afeb86a03bf3265d979
93769375
languageName: node
93779376
linkType: hard
93789377

@@ -11108,15 +11107,15 @@ __metadata:
1110811107
languageName: node
1110911108
linkType: hard
1111011109

11111-
"eslint-plugin-storybook@npm:10.3.6":
11112-
version: 10.3.6
11113-
resolution: "eslint-plugin-storybook@npm:10.3.6"
11110+
"eslint-plugin-storybook@npm:10.4.0":
11111+
version: 10.4.0
11112+
resolution: "eslint-plugin-storybook@npm:10.4.0"
1111411113
dependencies:
1111511114
"@typescript-eslint/utils": "npm:^8.48.0"
1111611115
peerDependencies:
1111711116
eslint: ">=8"
11118-
storybook: ^10.3.6
11119-
checksum: 10c0/2b9d8950a446b8177485f9fccaf8476aa3e83cb7e9ea5b5ba53785f679d6ba08c44bd0b1a172bc59254f3635d93cd5a78dc8b954b285ed55da51b5750f308695
11117+
storybook: ^10.4.0
11118+
checksum: 10c0/70391c7a8896990e091432cf58a90eaf01823d72b16fdf7c4c6e72a0466bc2ad45c24bad41b3da8e205a8db23a21f0c0b0d32ad7be01d1e7c26ee52b24bbcf99
1112011119
languageName: node
1112111120
linkType: hard
1112211121

@@ -16962,7 +16961,7 @@ __metadata:
1696216961
languageName: node
1696316962
linkType: hard
1696416963

16965-
"monocart-coverage-reports@npm:^2.12.10":
16964+
"monocart-coverage-reports@npm:^2.12.11":
1696616965
version: 2.12.11
1696716966
resolution: "monocart-coverage-reports@npm:2.12.11"
1696816967
dependencies:
@@ -16991,21 +16990,21 @@ __metadata:
1699116990
languageName: node
1699216991
linkType: hard
1699316992

16994-
"monocart-reporter@npm:2.10.1":
16995-
version: 2.10.1
16996-
resolution: "monocart-reporter@npm:2.10.1"
16993+
"monocart-reporter@npm:2.11.2":
16994+
version: 2.11.2
16995+
resolution: "monocart-reporter@npm:2.11.2"
1699716996
dependencies:
1699816997
console-grid: "npm:^2.2.4"
1699916998
eight-colors: "npm:^1.3.3"
1700016999
koa: "npm:^3.2.0"
1700117000
koa-static-resolver: "npm:^1.0.6"
1700217001
lz-utils: "npm:^2.1.1"
17003-
monocart-coverage-reports: "npm:^2.12.10"
17002+
monocart-coverage-reports: "npm:^2.12.11"
1700417003
monocart-locator: "npm:^1.0.3"
17005-
nodemailer: "npm:^8.0.5"
17004+
nodemailer: "npm:^8.0.7"
1700617005
bin:
1700717006
monocart: lib/cli.js
17008-
checksum: 10c0/b27f0b2699843744bbe228883611210517c525118590559cfbb2c954395dec0164273bbabf5a1eadb365a49646a9321585172e9da6d4d7448691113463e0fb40
17007+
checksum: 10c0/14cf4c8a2e10647ae210953fb6bbd0207b240490818e8fcf84a5ad413370040ca7897f74ad898e05d1954e630f3a78ea2f2be69e02c8252807722df7fd58b966
1700917008
languageName: node
1701017009
linkType: hard
1701117010

@@ -17197,7 +17196,7 @@ __metadata:
1719717196
languageName: node
1719817197
linkType: hard
1719917198

17200-
"nodemailer@npm:^8.0.5":
17199+
"nodemailer@npm:^8.0.7":
1720117200
version: 8.0.7
1720217201
resolution: "nodemailer@npm:8.0.7"
1720317202
checksum: 10c0/f1580263ad7fba64a493c47c4d78f06679c0da9cc3becbe6b628311a16474c07286fc4e530006ea262537594ccc475dc569fd519275222fd01f99c315976aeac
@@ -18744,27 +18743,27 @@ __metadata:
1874418743
languageName: node
1874518744
linkType: hard
1874618745

18747-
"playwright-core@npm:1.59.1":
18748-
version: 1.59.1
18749-
resolution: "playwright-core@npm:1.59.1"
18746+
"playwright-core@npm:1.60.0":
18747+
version: 1.60.0
18748+
resolution: "playwright-core@npm:1.60.0"
1875018749
bin:
1875118750
playwright-core: cli.js
18752-
checksum: 10c0/d41a74d9681ce3beb3d5239e9ed577710b4ad099a6ca2476219c6599d51e9cb4b80bd72ed82c528da6a5d929c18ae3b872cf02bb83f78fa1c2cb9199c501abee
18751+
checksum: 10c0/99ccd43923b6e9355e0723b7fe221e6326efd4687f8dafff951313662aea11db51f542a9c2122c704c445fb9baae1c9ec9fa6f895126bbddd9fe92313f6942c9
1875318752
languageName: node
1875418753
linkType: hard
1875518754

18756-
"playwright@npm:1.59.1":
18757-
version: 1.59.1
18758-
resolution: "playwright@npm:1.59.1"
18755+
"playwright@npm:1.60.0":
18756+
version: 1.60.0
18757+
resolution: "playwright@npm:1.60.0"
1875918758
dependencies:
1876018759
fsevents: "npm:2.3.2"
18761-
playwright-core: "npm:1.59.1"
18760+
playwright-core: "npm:1.60.0"
1876218761
dependenciesMeta:
1876318762
fsevents:
1876418763
optional: true
1876518764
bin:
1876618765
playwright: cli.js
18767-
checksum: 10c0/dfe38396e616e5c4f98825ce90037bb96e477c5a2bd9258a24854f8ce72a8a41427b19098863866f85aa0216e70287dd537c4438d761aca93995e31ae099c533
18766+
checksum: 10c0/714ad76d85b4865d7e43c0012f9039800c1485373388973ed39d79339cee5ad467052d1e2f1eaeca107a1cb6e65342186a8578a4c3504853d84c3a691250d5db
1876818767
languageName: node
1876918768
linkType: hard
1877018769

@@ -22531,10 +22530,10 @@ __metadata:
2253122530
"@babel/preset-react": "npm:7.28.5"
2253222531
"@babel/preset-typescript": "npm:7.28.5"
2253322532
"@cypress/code-coverage": "npm:4.0.3"
22534-
"@eslint/compat": "npm:2.0.5"
22533+
"@eslint/compat": "npm:2.1.0"
2253522534
"@eslint/js": "npm:9.39.4"
22536-
"@playwright/experimental-ct-react": "npm:1.59.1"
22537-
"@playwright/test": "npm:1.59.1"
22535+
"@playwright/experimental-ct-react": "npm:1.60.0"
22536+
"@playwright/test": "npm:1.60.0"
2253822537
"@semantic-release/github": "npm:12.0.8"
2253922538
"@stackblitz/sdk": "npm:1.11.0"
2254022539
"@storybook/addon-a11y": "npm:10.4.0"
@@ -22552,9 +22551,9 @@ __metadata:
2255222551
"@ui5/webcomponents-icons": "npm:2.22.0"
2255322552
"@ui5/webcomponents-tools": "npm:2.22.0"
2255422553
"@vitejs/plugin-react": "npm:6.0.2"
22555-
chromatic: "npm:16.9.1"
22554+
chromatic: "npm:16.10.0"
2255622555
cssnano: "npm:8.0.1"
22557-
cypress: "npm:15.14.2"
22556+
cypress: "npm:15.15.0"
2255822557
cypress-real-events: "npm:1.15.0"
2255922558
dedent: "npm:1.7.2"
2256022559
documentation: "npm:14.0.3"
@@ -22566,13 +22565,13 @@ __metadata:
2256622565
eslint-plugin-prettier: "npm:5.5.5"
2256722566
eslint-plugin-react: "npm:7.37.5"
2256822567
eslint-plugin-react-hooks: "npm:7.1.1"
22569-
eslint-plugin-storybook: "npm:10.3.6"
22568+
eslint-plugin-storybook: "npm:10.4.0"
2257022569
glob: "npm:13.0.6"
2257122570
globals: "npm:17.6.0"
2257222571
husky: "npm:9.1.7"
2257322572
lerna: "npm:9.0.7"
2257422573
lint-staged: "npm:17.0.4"
22575-
monocart-reporter: "npm:2.10.1"
22574+
monocart-reporter: "npm:2.11.2"
2257622575
npm-run-all2: "npm:8.0.4"
2257722576
pagefind: "npm:1.5.2"
2257822577
postcss: "npm:8.5.14"

0 commit comments

Comments
 (0)