Skip to content

fix(deps): update all non-major dependencies#1337

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Apr 11, 2026
Merged

fix(deps): update all non-major dependencies#1337
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 11, 2026

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) ^1.58.2^1.59.1 age confidence
@storybook/addon-a11y (source) ^10.3.3^10.3.4 age confidence
@storybook/addon-styling-webpack ^3.0.1^3.0.2 age confidence
@storybook/cli (source) ^10.3.3^10.3.4 age confidence
@storybook/react-webpack5 (source) ^10.3.3^10.3.4 age confidence
@tanstack/react-query (source) ^5.95.2^5.96.2 age confidence
eslint (source) ^10.1.0^10.2.0 age confidence
eslint-plugin-storybook (source) 10.3.310.3.4 age confidence
lodash (source) ^4.17.23^4.18.1 age confidence
lodash-es (source) ^4.17.23^4.18.1 age confidence
react-hook-form (source) ^7.72.0^7.72.1 age confidence
react-router (source) ^7.13.2^7.14.0 age confidence
storybook (source) ^10.3.3^10.3.4 age confidence
typescript-eslint (source) ^8.57.2^8.58.0 age confidence
web-ext ^10.0.0^10.1.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.59.1

Compare Source

v1.59.0

Compare Source

storybookjs/storybook (@​storybook/addon-a11y)

v10.3.4

Compare Source

storybookjs/addon-styling-webpack (@​storybook/addon-styling-webpack)

v3.0.2

Compare Source

🐛 Bug Fix
Authors: 1

TanStack/query (@​tanstack/react-query)

v5.96.2

Compare Source

Patch Changes

v5.96.1

Compare Source

Patch Changes

v5.96.0

Compare Source

Patch Changes
eslint/eslint (eslint)

v10.2.0

Compare Source

Features

Bug Fixes

Documentation

  • a2af743 docs: add language to configuration objects (#​20712) (Francesco Trotta)
  • 845f23f docs: Update README (GitHub Actions Bot)
  • 5fbcf59 docs: remove sourceType from ts playground link (#​20477) (Tanuj Kanti)
  • 8702a47 docs: Update README (GitHub Actions Bot)
  • ddeaded docs: Update README (GitHub Actions Bot)
  • 2b44966 docs: add Major Releases section to Manage Releases (#​20269) (Milos Djermanovic)
  • eab65c7 docs: update eslint versions in examples (#​20664) (루밀LuMir)
  • 3e4a299 docs: update ESM Dependencies policies with note for own-usage packages (#​20660) (Milos Djermanovic)

Chores

  • 8120e30 refactor: extract no unmodified loop condition (#​20679) (kuldeep kumar)
  • 46e8469 chore: update dependency markdownlint-cli2 to ^0.22.0 (#​20697) (renovate[bot])
  • 01ed3aa test: add unit tests for unicode utilities (#​20622) (Manish chaudhary)
  • 811f493 ci: remove --legacy-peer-deps from types integration tests (#​20667) (Milos Djermanovic)
  • 6b86fcf chore: update dependency npm-run-all2 to v8 (#​20663) (renovate[bot])
  • 632c4f8 chore: add prettier update commit to .git-blame-ignore-revs (#​20662) (루밀LuMir)
  • b0b0f21 chore: update dependency eslint-plugin-regexp to ^3.1.0 (#​20659) (Milos Djermanovic)
  • 228a2dd chore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (#​20661) (Milos Djermanovic)
  • 3ab4d7e test: Add tests for eslintrc-style keys (#​20645) (kuldeep kumar)
react-hook-form/react-hook-form (react-hook-form)

v7.72.1: Version 7.72.1

Compare Source

🐞 fix: add isDirty check for numeric string keys in defaultValues (issue #​13346) (#​13347)
🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty fields (#​13326)
🐞 fix: memoize control in HookFormControlContext to prevent render conflicts (#​13272) (#​13312)
🐞 fix: isNameInFieldArray should check all ancestor paths for nested field arrays (#​13318)
🐞 fix: #​13320 formState.isValid incorrect on Controller re-mount (#​13324)

thanks to @​6810779s, @​candymask0712, @​olagokemills, @​shahmir-oscilar & @​bae080311

remix-run/react-router (react-router)

v7.14.0

Compare Source

Patch Changes
  • UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module exports remain unchanged from stable v7 non-RSC mode, but new exports are added for RSC mode. If you want to use RSC features, you will need to update your route modules to export the new annotations. (#​14901)

    If you are using RSC framework mode currently, you will need to update your route modules to the new conventions. The following route module components have their own mutually exclusive server component counterparts:

    Server Component Export Client Component
    ServerComponent default
    ServerErrorBoundary ErrorBoundary
    ServerLayout Layout
    ServerHydrateFallback HydrateFallback

    If you were previously exporting a ServerComponent, your ErrorBoundary, Layout, and HydrateFallback were also server components. If you want to keep those as server components, you can rename them and prefix them with Server. If you were previously importing the implementations of those components from a client module, you can simply inline them.

    Example:

    Before

    import { ErrorBoundary as ClientErrorBoundary } from "./client";
    
    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      return <ClientErrorBoundary />;
    }
    
    export function Layout() {
      // ...
    }
    
    export function HydrateFallback() {
      // ...
    }

    After

    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      // previous implementation of ClientErrorBoundary, this is now a client component
    }
    
    export function ServerLayout() {
      // rename previous Layout export to ServerLayout to make it a server component
    }
    
    export function ServerHydrateFallback() {
      // rename previous HydrateFallback export to ServerHydrateFallback to make it a server component
    }
  • rsc Link prefetch (#​14902)

  • Remove recursion from turbo-stream v2 allowing for encoding / decoding of massive payloads. (#​14838)

  • encodeViaTurboStream leaked memory via unremoved AbortSignal listener (#​14900)

typescript-eslint/typescript-eslint (typescript-eslint)

v8.58.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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

mozilla/web-ext (web-ext)

v10.1.0: (2026-03-31)

Compare Source

main changes

None

dependencies

  • Updated: dependency addons-linter to 10.3.0 (#​3673)
  • Updated: dependency @babel/runtime to 7.29.2 (#​3660)

dev dependencies

  • Updated: dependency @babel/preset-env to 7.29.2 (#​3661)
  • Updated: dependency @commitlint/cli to 20.5.0 (#​3657)
  • Updated: dependency @commitlint/config-conventional to 20.5.0 (#​3658)
  • Updated: dependency brace-expansion to 1.1.13 (#​3671)
  • Updated: dependency flatted to 3.4.1 (#​3656)
  • Updated: dependency flatted to 3.4.2 (#​3665)
  • Updated: dependency node-forge to 1.4.0 (#​3670)
  • Updated: dependency picomatch (#​3669)
  • Updated: dependency sinon to 21.0.3 (#​3659)
  • Updated: dependency undici to 7.24.1 (#​3655)

Configuration

📅 Schedule: (in timezone America/Toronto)

  • Branch creation
    • "before 5am on saturday"
  • 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 April 11, 2026 04:37
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Apr 11, 2026

⚠️ No Changeset found

Latest commit: 8f5dcec

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.

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

@renovate renovate Bot merged commit 7da1e9a into main Apr 11, 2026
10 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch April 11, 2026 04:39
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