Skip to content

chore(deps): update all#125

Merged
renovate[bot] merged 1 commit intomasterfrom
renovate/all
Apr 1, 2026
Merged

chore(deps): update all#125
renovate[bot] merged 1 commit intomasterfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 1, 2026

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.4.92.4.10 age confidence
@storybook/react (source) ^10.2.13^10.3.3 age confidence
@storybook/react-vite (source) ^10.2.13^10.3.3 age confidence
jest (source) ^30.2.0^30.3.0 age confidence
jest-environment-jsdom (source) ^30.2.0^30.3.0 age confidence
storybook (source) ^10.2.13^10.3.3 age confidence
vite (source) ^8.0.0^8.0.3 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.10

Compare Source

Patch Changes
  • #​8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    
    // Valid
    setTimeout(() => alert("Hello"), 100);
  • #​9320 93c3b6c Thanks @​taberoajorge! - Fixed #​7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #​9630 1dd4a56 Thanks @​raashish1601! - Fixed #​9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #​9216 04243b0 Thanks @​FrederickStempfle! - Fixed #​9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #​9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed #​191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #​9643 5bfee36 Thanks @​dyc3! - Fixed #​9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #​9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #​9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed --diagnostic-level not fully filtering diagnostics. Setting --diagnostic-level=error now correctly excludes warnings and infos from both the output and the summary counts.

  • #​9623 13b3261 Thanks @​ematipico! - Fixed #​9258: --skip no longer causes suppressions/unused warnings for suppression comments targeting skipped rules or domains.

  • #​9631 599dd04 Thanks @​raashish1601! - Fixed #​9625: experimentalEmbeddedSnippetsEnabled no longer crashes when a file mixes formatable CSS-in-JS templates with tagged templates that the embedded formatter can't currently delegate, such as a styled-components interpolation returning `css```.

storybookjs/storybook (@​storybook/react)

v10.3.3

Compare Source

v10.3.2

Compare Source

v10.3.1

Compare Source

v10.3.0

Compare Source

> Improved developer experience, AI-assisting tools, and broader ecosystem support

Storybook 10.3 contains hundreds of fixes and improvements including:

  • 🤖 Storybook MCP: Agentic component dev, docs, and test (Preview release for React)
  • ⚡ Vite 8 support
  • ▲ Next.js 16.2 support
  • 📝 ESLint 10 support
  • 🧪 React: Experimental react-component-meta prop extraction tool for accurate controls and args tables
  • 〰️ Addon Pseudo-States: Tailwind v4 support
  • 🔧 Addon-Vitest: Simplified configuration - no more setup files required
  • ♿ Numerous accessibility improvements across the UI
List of all updates - A11y: Add ScrollArea prop focusable for when it has static children - [#​33876](https://github.com/storybookjs/storybook/pull/33876), thanks @​Sidnioulz! - A11y: Ensure popover dialogs have an ARIA label - [#​33500](https://github.com/storybookjs/storybook/pull/33500), thanks @​gayanMatch! - A11y: Make resize handles for addon panel and sidebar accessible [#​33980](https://github.com/storybookjs/storybook/pull/33980) - A11y: Underline MDX links for WCAG SC 1.4.1 compliance - [#​33139](https://github.com/storybookjs/storybook/pull/33139), thanks @​NikhilChowdhury27! - Actions: Add expandLevel parameter to configure tree depth - [#​33977](https://github.com/storybookjs/storybook/pull/33977), thanks @​mixelburg! - Actions: Fix HandlerFunction type to support async callback props - [#​33864](https://github.com/storybookjs/storybook/pull/33864), thanks @​mixelburg! - Addon-Docs: Add React as optimizeDeps entry - [#​34176](https://github.com/storybookjs/storybook/pull/34176), thanks @​valentinpalkovic! - Addon-Docs: Add support for `sourceState: 'none'` to canvas block parameters - [#​33627](https://github.com/storybookjs/storybook/pull/33627), thanks @​quisido! - Addon-docs: Restore `docs.components` overrides for doc blocks [#​34111](https://github.com/storybookjs/storybook/pull/34111) - Addon-Vitest: Add channel API to programmatically trigger test runs - [#​33206](https://github.com/storybookjs/storybook/pull/33206), thanks @​JReinhold! - Addon-Vitest: Handle additional vitest config export patterns in postinstall - [#​34106](https://github.com/storybookjs/storybook/pull/34106), thanks @​copilot-swe-agent! - Addon-Vitest: Make Playwright `--with-deps` platform-aware to avoid `sudo` prompt on Linux [#​34121](https://github.com/storybookjs/storybook/pull/34121) - Addon-Vitest: Refactor Vitest setup to eliminate the need for a dedicated setup file - [#​34025](https://github.com/storybookjs/storybook/pull/34025), thanks @​valentinpalkovic! - Addon-Vitest: Support Vitest canaries - [#​33833](https://github.com/storybookjs/storybook/pull/33833), thanks @​valentinpalkovic! - Angular: Add moduleResolution: bundler to tsconfig - [#​34085](https://github.com/storybookjs/storybook/pull/34085), thanks @​valentinpalkovic! - Angular: only load webpack dependencies on demand - [#​34043](https://github.com/storybookjs/storybook/pull/34043), thanks @​sod! - Angular: Storybook fails with unknown option silent - [#​33736](https://github.com/storybookjs/storybook/pull/33736), thanks @​tanujbhaud! - Build: Update @​types/node - [#​34037](https://github.com/storybookjs/storybook/pull/34037), thanks @​valentinpalkovic! - Builder-Vite: Centralize Vite plugins for builder-vite and addon-vitest - [#​33819](https://github.com/storybookjs/storybook/pull/33819), thanks @​valentinpalkovic! - Builder-Vite: Fix cold-cache vitest failures for story paths containing glob special characters - [#​34044](https://github.com/storybookjs/storybook/pull/34044), thanks @​copilot-swe-agent! - Builder-Vite: Use preview annotations as entry points for optimizeDeps - [#​33875](https://github.com/storybookjs/storybook/pull/33875), thanks @​copilot-swe-agent! - CI: declare explicit permissions for stale and weekly cron workflows - [#​33902](https://github.com/storybookjs/storybook/pull/33902), thanks @​Rohan5commit! - CLI: Add vike CLI metadata - [#​34189](https://github.com/storybookjs/storybook/pull/34189), thanks @​yannbf! - CLI: Avoid hanging of postinstall during init - [#​34175](https://github.com/storybookjs/storybook/pull/34175), thanks @​valentinpalkovic! - CLI: Fix onboarding not opening - [#​33609](https://github.com/storybookjs/storybook/pull/33609), thanks @​ndelangen! - CLI: Show multiple favicons warning as debug message - [#​34069](https://github.com/storybookjs/storybook/pull/34069), thanks @​remino! - Cli: Use npm for registry URL in PNPMProxy to avoid workspace errors - [#​33571](https://github.com/storybookjs/storybook/pull/33571), thanks @​ia319! - Controls: Allow story argTypes to override control: false from meta - [#​33729](https://github.com/storybookjs/storybook/pull/33729), thanks @​jonathan-fulton! - Controls: Fix Object contrast issue and tidy up code - [#​33923](https://github.com/storybookjs/storybook/pull/33923), thanks @​Sidnioulz! - Core: Ensure telemetry is never triggered on initial load of checklist data - [#​33918](https://github.com/storybookjs/storybook/pull/33918), thanks @​ghengeveld! - Core: Fix event source URL based on refId when multiple iframes share the same origin [#​34105](https://github.com/storybookjs/storybook/pull/34105) - Core: Fix false-positive CJS warning when 'exports' appears in strings or comments - [#​33572](https://github.com/storybookjs/storybook/pull/33572), thanks @​reeseo3o! - Core: Fix handling complex viewport sizes [#​33615](https://github.com/storybookjs/storybook/pull/33615) - Core: Fix iframe reference for composed Storybook on a subpath [#​34100](https://github.com/storybookjs/storybook/pull/34100) - Core: Fix typos: occured -> occurred, recieves -> receives - [#​33727](https://github.com/storybookjs/storybook/pull/33727), thanks @​jonathan-fulton! - Core: Handle BROWSER=none correctly and improve error messages - [#​33730](https://github.com/storybookjs/storybook/pull/33730), thanks @​jonathan-fulton! - Core: Ignore empty files when indexing - [#​33782](https://github.com/storybookjs/storybook/pull/33782), thanks @​JReinhold! - Core: Register CORS middleware before index.json route - [#​33728](https://github.com/storybookjs/storybook/pull/33728), thanks @​jonathan-fulton! - Core: Revert Pull Request #​33420 from Maelryn/fix/copy-button-overlap - [#​33877](https://github.com/storybookjs/storybook/pull/33877), thanks @​Sidnioulz! - Core: Zoom tool refinements - Hide reset button when value is initial - [#​33635](https://github.com/storybookjs/storybook/pull/33635), thanks @​superLipbalm! - Docs: Edit JSON button is now accessible at 320x256 viewport (WCAG 2.1 Reflow test) - [#​33707](https://github.com/storybookjs/storybook/pull/33707), thanks @​TheSeydiCharyyev! - Docs: Make CSS ordering in DocsContainer more predictable [#​34015](https://github.com/storybookjs/storybook/pull/34015) - ESLint-plugin: Disallow extra properties in eslint plugin rule options - [#​32056](https://github.com/storybookjs/storybook/pull/32056), thanks @​andreww2012! - ESLint: bail out config setup if eslint-plugin-storybook is already imported - [#​34089](https://github.com/storybookjs/storybook/pull/34089), thanks @​copilot-swe-agent! - HMR: Fix race conditions causing stale play functions to fire on re-rendered stories - [#​33930](https://github.com/storybookjs/storybook/pull/33930), thanks @​copilot-swe-agent! - Maintenance: Revert pull request #​33930 HMR events - [#​34190](https://github.com/storybookjs/storybook/pull/34190), thanks @​yannbf! - Maintenance: Use std-env for AI agent detection in telemetry [#​34114](https://github.com/storybookjs/storybook/pull/34114) - Manifest: Add docs entries to debugger - [#​33607](https://github.com/storybookjs/storybook/pull/33607), thanks @​JReinhold! - Manifest: Rename `experimentalComponentsManifest` → `componentsManifest`, default to `true` [#​33974](https://github.com/storybookjs/storybook/pull/33974) - Manifests: Fix Attached MDX causing wrong component entries [#​34101](https://github.com/storybookjs/storybook/pull/34101) - Next.js-Vite: Fix failing postcss mutation - [#​33879](https://github.com/storybookjs/storybook/pull/33879), thanks @​valentinpalkovic! - Next.js: Move image configuration from FrameworkOptions to parameters [#​32639](https://github.com/storybookjs/storybook/pull/32639), thanks @​y-hsgw! - Preact: Support inferring props from component types - [#​33828](https://github.com/storybookjs/storybook/pull/33828), thanks @​JoviDeCroock! - React Native Web: Fix inconsistent example stories - [#​33891](https://github.com/storybookjs/storybook/pull/33891), thanks @​danielalanbates! - React: Add react-docgen-typescript to component manifest - [#​33818](https://github.com/storybookjs/storybook/pull/33818), thanks @​kasperpeulen! - Revert "Toolbar: Remove extra toolbar divider when zoom controls not shown" - [#​34099](https://github.com/storybookjs/storybook/pull/34099), thanks @​valentinpalkovic! - Test: Fix clearing mocks in Vitest [#​34078](https://github.com/storybookjs/storybook/pull/34078) - Test: Update @​testing-library/jest-dom - [#​33928](https://github.com/storybookjs/storybook/pull/33928), thanks @​valentinpalkovic! - Theming: Export interface declaration for `ThemesGlobals` - [#​33343](https://github.com/storybookjs/storybook/pull/33343), thanks @​icopp! - Toolbar: Remove extra toolbar divider when zoom controls not shown - [#​33731](https://github.com/storybookjs/storybook/pull/33731), thanks @​jonathan-fulton! - UI: Allow direct kb/mouse actions on zoom tool button - [#​33496](https://github.com/storybookjs/storybook/pull/33496), thanks @​Sidnioulz! - UI: Avoid large animation for reduced motion users - [#​33530](https://github.com/storybookjs/storybook/pull/33530), thanks @​Sidnioulz! - UI: Ensure Link without href is keyboard-reachable - [#​34163](https://github.com/storybookjs/storybook/pull/34163), thanks @​Sidnioulz! - UI: Fix `z-index` problem with `popover`s and `modal`s nesting - [#​33757](https://github.com/storybookjs/storybook/pull/33757), thanks @​ndelangen! - UI: Fix code/copy buttons overlap with content - [#​33889](https://github.com/storybookjs/storybook/pull/33889), thanks @​Sidnioulz! - UI: Fix Copy button overlapping code in portrait mode - [#​33420](https://github.com/storybookjs/storybook/pull/33420), thanks @​Maelryn! - UI: Fix modal text selection - [#​33967](https://github.com/storybookjs/storybook/pull/33967), thanks @​Sidnioulz! - UI: Fix tab navigation after closing addon panel - [#​33971](https://github.com/storybookjs/storybook/pull/33971), thanks @​copilot-swe-agent! - UI: Handle kb nav edge cases when preview and panel are hidden - [#​33588](https://github.com/storybookjs/storybook/pull/33588), thanks @​Sidnioulz! - UI: Hide addon panel Drag on pages without a panel - [#​34162](https://github.com/storybookjs/storybook/pull/34162), thanks @​Sidnioulz! - UI: Hide manifest tag for now - [#​34165](https://github.com/storybookjs/storybook/pull/34165), thanks @​Sidnioulz! - UI: Make disabled Buttons keyboard-focusable - [#​34166](https://github.com/storybookjs/storybook/pull/34166), thanks @​Sidnioulz! - UI: Make TagsFilter state persistent [#​33374](https://github.com/storybookjs/storybook/pull/33374) - UI: Use correct selector for addon panel focus check - [#​34164](https://github.com/storybookjs/storybook/pull/34164), thanks @​Sidnioulz! - UI: Zoom faster when pressing shift - [#​34185](https://github.com/storybookjs/storybook/pull/34185), thanks @​Sidnioulz! - Viewport: Skip viewport validation before parameters load - [#​33794](https://github.com/storybookjs/storybook/pull/33794), thanks @​ia319! - Vite: Add mock entries to optimizeDeps.entries - [#​34167](https://github.com/storybookjs/storybook/pull/34167), thanks @​valentinpalkovic! - Vue3-Vite: Allow paths in docgen tsconfig option [#​32310](https://github.com/storybookjs/storybook/pull/32310), thanks @​Thomaash!

v10.2.19

Compare Source

v10.2.18

Compare Source

v10.2.17

Compare Source

v10.2.16

Compare Source

v10.2.15

Compare Source

v10.2.14

Compare Source

jestjs/jest (jest)

v30.3.0

Compare Source

Features
  • [jest-config] Add defineConfig and mergeConfig helpers for type-safe Jest config (#​15844)
  • [jest-fake-timers] Add setTimerTickMode to configure how timers advance
  • [*] Reduce token usage when run through LLMs (3f17932)
Fixes
  • [jest-config] Keep CLI coverage output when using --json with --outputFile (#​15918)
  • [jest-mock] Use Symbol from test environment (#​15858)
  • [jest-reporters] Fix issue where console output not displayed for GHA reporter even with silent: false option (#​15864)
  • [jest-runtime] Fix issue where user cannot utilize dynamic import despite specifying --experimental-vm-modules Node option (#​15842)
  • [jest-test-sequencer] Fix issue where failed tests due to compilation errors not getting re-executed even with --onlyFailures CLI option (#​15851)
  • [jest-util] Make sure process.features.require_module is false (#​15867)
Chore & Maintenance
  • [*] Replace remaining micromatch uses with picomatch
  • [deps] Update to sinon/fake-timers v15
  • [docs] Update V30 migration guide to notify users on jest.mock() work with case-sensitive path (#​15849)
  • Updated Twitter icon to match the latest brand guidelines (#​15869)
vitejs/vite (vite)

v8.0.3

Compare Source

Features
Bug Fixes
  • html: cache unfiltered CSS list to prevent missing styles across entries (#​22017) (5464190)
  • module-runner: handle non-ascii characters in base64 sourcemaps (#​21985) (77c95bf)
  • module-runner: skip re-import if the runner is closed (#​22020) (ee2c2cd)
  • optimizer: scan is not resolving sub path import if used in a glob import (#​22018) (ddfe20d)
  • ssr: ssrTransform incorrectly rewrites meta identifier inside import.meta when a binding named meta exists (#​22019) (cff5f0c)
Miscellaneous Chores
Tests

v8.0.2

Compare Source

Features
Bug Fixes
Miscellaneous Chores

v8.0.1

Compare Source

Features
Bug Fixes
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) April 1, 2026 00:45
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud bot commented Apr 1, 2026

@renovate renovate bot merged commit ca8fe29 into master Apr 1, 2026
2 of 3 checks passed
@renovate renovate bot deleted the renovate/all branch April 1, 2026 00:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants