Skip to content

build(deps): bump the production-non-breaking group with 10 updates#858

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/bun/production-non-breaking-1d187cb5b4
Open

build(deps): bump the production-non-breaking group with 10 updates#858
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/bun/production-non-breaking-1d187cb5b4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Bumps the production-non-breaking group with 10 updates:

Package From To
@react-router/cloudflare 7.13.1 7.14.2
@react-router/remix-routes-option-adapter 7.13.1 7.14.2
@tanstack/react-query 5.90.21 5.100.5
bip32 5.0.0 5.0.1
isbot 5.1.35 5.1.39
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
react-hook-form 7.71.2 7.74.0
react-number-format 5.4.4 5.4.5
react-router 7.13.1 7.14.2

Updates @react-router/cloudflare from 7.13.1 to 7.14.2

Changelog

Sourced from @​react-router/cloudflare's changelog.

v7.14.2

Patch Changes

v7.14.1

Patch Changes

7.14.0

Patch Changes

  • Updated dependencies:
    • react-router@7.14.0

7.13.2

Patch Changes

  • Updated dependencies:
    • react-router@7.13.2
Commits

Updates @react-router/remix-routes-option-adapter from 7.13.1 to 7.14.2

Changelog

Sourced from @​react-router/remix-routes-option-adapter's changelog.

v7.14.2

Patch Changes

v7.14.1

Patch Changes

7.14.0

Patch Changes

  • Updated dependencies:
    • @react-router/dev@7.14.0

7.13.2

Patch Changes

  • Updated dependencies:
    • @react-router/dev@7.13.2
Commits

Updates @tanstack/react-query from 5.90.21 to 5.100.5

Changelog

Sourced from @​tanstack/react-query's changelog.

5.100.5

Patch Changes

  • Updated dependencies [a53ef97]:
    • @​tanstack/query-core@​5.100.5

5.100.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.4

5.100.3

Patch Changes

  • fix(suspense): skip calling combine when queries would suspend (#10576)

  • Updated dependencies [f85d825]:

    • @​tanstack/query-core@​5.100.3

5.100.2

Patch Changes

5.100.1

Patch Changes

  • Updated dependencies [1bb0d23]:
    • @​tanstack/query-core@​5.100.1

5.100.0

Patch Changes

  • Updated dependencies [6540a41]:
    • @​tanstack/query-core@​5.100.0

5.99.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.99.2

... (truncated)

Commits

Updates bip32 from 5.0.0 to 5.0.1

Commits
Maintainer changes

This version was pushed to npm by jl.landabaso, a new releaser for bip32 since your current version.


Updates isbot from 5.1.35 to 5.1.39

Changelog

Sourced from isbot's changelog.

5.1.39

  • Pattern updates

5.1.38

  • Pattern updates

5.1.37

  • Better checking for non empty strings in the interface functions
  • [Internal] Build with tsup

5.1.36

  • [Pattern] Pattern updates
Commits

Updates react from 19.2.4 to 19.2.5

Commits

Updates react-dom from 19.2.4 to 19.2.5

Commits

Updates react-hook-form from 7.71.2 to 7.74.0

Commits
  • 8a816ed 7.74.0
  • ef641fe 🐞 fix: preserve previous field value when useController name changes (#13395)
  • a08a8e8 🐞 fix: handle null parent when unregistering nested field (#13396)
  • 2374a64 📖 thanks KANAME for the support over the years
  • 6737b99 🌡️ test: cover valueAsNumber NaN required validation in validateField (#13391)
  • 29cdd08 🐞 fix: treat NaN as empty when valueAsNumber is true in validateField (#13388)
  • 44df01d Revert "Revert "🪢 fix build to exclude test files (#13387)""
  • bf525c1 Revert "Revert "🪇 feat: setValues (#13201)""
  • 6cd9e45 7.73.1
  • 9b07561 Revert "🪢 fix build to exclude test files (#13387)"
  • Additional commits viewable in compare view

Updates react-number-format from 5.4.4 to 5.4.5

Release notes

Sourced from react-number-format's releases.

Bug fixes

What's Changed

Bug fixes Fixed #883, defaultValue not triggering onValueChange. Fix #882, deleting negative symbol when prefix is more than 1 character

Commits
  • 503a85e Formatting fix
  • 3e09057 Merge pull request #894 from s-yadav/bug-fixes-5.4.4
  • 74a4428 Fix logic on default value check.
  • 0d660b1 Revert "Fix #879, Treat empty mask as space."
  • 412bc69 Fix test which was not running
  • bc825e2 - Remove action status from readme.
  • e04fcb2 Fix #879, Treat empty mask as space.
  • 9b7ca03 Fix #882, deleting negative symbol when preix is more then 1 char
  • c7ae408 Fixed defaultValue not triggering onValueChange.
  • See full diff in compare view

Updates react-router from 7.13.1 to 7.14.2

Changelog

Sourced from react-router's changelog.

v7.14.2

Patch Changes

  • Remove the un-documented custom error serialization logic from the internal turbo-stream implementation. React Router only automatically handles serialization of Error and it's standard subtypes (SyntaxError, TypeError, etc.). ([aabf4a1)

  • Properly handle parent middleware redirects during fetcher.load ([aabf4a1)

  • Remove redundant Omit<RouterProviderProps, "flushSync"> from react-router/dom RouterProvider ([aabf4a1)

  • Improved types for generatePath's param arg ([aabf4a1)

    Type errors when required params are omitted:

    // Before
    // Passes type checks, but throws at runtime 💥
    generatePath(":required", { required: null });
    // After
    generatePath(":required", { required: null });
    //                          ^^^^^^^^ Type 'null' is not assignable to type 'string'.ts(2322)

    Allow omission of optional params:

    // Before
    generatePath(":optional?", {});
    //                         ^^ Property 'optional' is missing in type '{}' but required in type '{ optional: string | null | undefined; }'.ts(2741)
    // After
    generatePath(":optional?", {});

    Allows extra keys:

    // Before
    generatePath(":a", { a: "1", b: "2" });
    //                           ^ Object literal may only specify known properties, and 'b' does not exist in type '{ a: string; }'.ts(2353)
    // After
    generatePath(":a", { a: "1", b: "2" });

v7.14.1

Patch Changes

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-non-breaking group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@react-router/cloudflare](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-cloudflare) | `7.13.1` | `7.14.2` |
| [@react-router/remix-routes-option-adapter](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-remix-routes-option-adapter) | `7.13.1` | `7.14.2` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.100.5` |
| [bip32](https://github.com/bitcoinjs/bip32) | `5.0.0` | `5.0.1` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.35` | `5.1.39` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.71.2` | `7.74.0` |
| [react-number-format](https://github.com/s-yadav/react-number-format) | `5.4.4` | `5.4.5` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.14.2` |


Updates `@react-router/cloudflare` from 7.13.1 to 7.14.2
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-cloudflare/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/cloudflare@7.14.2/packages/react-router-cloudflare)

Updates `@react-router/remix-routes-option-adapter` from 7.13.1 to 7.14.2
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-remix-routes-option-adapter/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/remix-routes-option-adapter@7.14.2/packages/react-router-remix-routes-option-adapter)

Updates `@tanstack/react-query` from 5.90.21 to 5.100.5
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.100.5/packages/react-query)

Updates `bip32` from 5.0.0 to 5.0.1
- [Commits](https://github.com/bitcoinjs/bip32/commits)

Updates `isbot` from 5.1.35 to 5.1.39
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](https://github.com/omrilotan/isbot/commits/v5.1.39)

Updates `react` from 19.2.4 to 19.2.5
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `react-hook-form` from 7.71.2 to 7.74.0
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.71.2...v7.74.0)

Updates `react-number-format` from 5.4.4 to 5.4.5
- [Release notes](https://github.com/s-yadav/react-number-format/releases)
- [Commits](s-yadav/react-number-format@v5.4.4...v5.4.5)

Updates `react-router` from 7.13.1 to 7.14.2
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.14.2/packages/react-router)

---
updated-dependencies:
- dependency-name: "@react-router/cloudflare"
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-non-breaking
- dependency-name: "@react-router/remix-routes-option-adapter"
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-non-breaking
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.100.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-non-breaking
- dependency-name: bip32
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-non-breaking
- dependency-name: isbot
  dependency-version: 5.1.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-non-breaking
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-non-breaking
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-non-breaking
- dependency-name: react-hook-form
  dependency-version: 7.74.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-non-breaking
- dependency-name: react-number-format
  dependency-version: 5.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-non-breaking
- dependency-name: react-router
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-non-breaking
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 27, 2026

Labels

The following labels could not be found: T:dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot requested a review from a team as a code owner April 27, 2026 17:22
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