Skip to content

fix: bump the all-deps group across 1 directory with 20 updates - #1752

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-deps-886fd9449f
Open

fix: bump the all-deps group across 1 directory with 20 updates#1752
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-deps-886fd9449f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown

Bumps the all-deps group with 20 updates in the / directory:

Package From To
dom-helpers 5.2.1 6.0.1
final-form 4.20.10 5.0.1
react-final-form 6.5.9 7.0.1
@babel/core 7.29.7 8.0.1
@babel/eslint-parser 7.29.7 8.0.1
@babel/plugin-transform-runtime 7.29.7 8.0.1
chai 4.5.0 6.2.2
eslint 9.39.5 10.8.1
eslint-plugin-no-only-tests 2.6.0 3.4.0
eslint-plugin-react-hooks 1.7.0 7.1.1
faker 4.1.0 6.6.6
mocha 9.2.2 11.8.0
query-string 5.1.1 9.5.0
react 18.3.1 19.2.8
react-dom 18.3.1 19.2.8
react-intl 7.1.14 10.1.22
react-redux 8.1.3 9.3.0
react-router 5.3.4 8.3.0
react-router-dom 5.3.4 7.18.2
redux 4.2.1 5.0.1

Updates dom-helpers from 5.2.1 to 6.0.1

Changelog

Sourced from dom-helpers's changelog.

6.0.1 (2025-06-20)

Bug Fixes

  • fix import extensions in dts files (ca51d93)

6.0.0 (2025-06-20)

BREAKING CHANGES

  • Add export map and full ESM support
Commits
Maintainer changes

This version was pushed to npm by kytsang, a new releaser for dom-helpers since your current version.


Updates final-form from 4.20.10 to 5.0.1

Release notes

Sourced from final-form's releases.

v5.0.1

A big batch of bug fixes that have accumulated since the v5.0.0 release. No breaking changes.

New

  • ignoreUnregister config option — Fields that unregister will have their values ignored during validation and submission, without needing destroyOnUnmount. Useful for multi-step forms. (#500)

Bug Fixes

Validation

  • Fixed async validation race condition — per-field async promises are now tracked individually so stale results from previous runs can't overwrite current ones (#513, fixes #509)
  • Fixed infinite loop when an async validation promise rejects — the stale promise is now cleared so it can't retry forever (#530, fixes #166)
  • Fixed validation not running correctly when a field has both array-level and item-level validators (#524, fixes #482)
  • Fixed crash when a field is unregistered while validation is in-flight (#531, fixes #186)
  • Fixed crash when getValidators encounters an undefined field (#532, fixes #158)

Submission

  • Fixed beforeSubmit not being called before the sync errors check — it can now prevent submission even when there are no sync errors (#522)
  • Fixed submitErrors being wiped when sync validation fails after a failed submission (#521, fixes #437)

Field State

  • Fixed keepDirtyOnReinitialize not working correctly with array fields (#538, fixes #366)
  • Fixed modified flag not being cleared after reset() / initialize() (#536, fixes #317)
  • Fixed dirty state not being tracked for unregistered FieldArray fields (#528, fixes #487)
  • Fixed crash when unregistering a field that had been renamed (#533, fixes #191)
  • Fixed initialValues not updating when a field's initialValue prop changes (#543, fixes #988)

Values / setIn

  • Fixed decimal, negative, and zero-padded numbers being treated as array indexes instead of object keys (e.g., values["1.5"] no longer becomes an array) (#526)
  • Fixed string error values being lost when removing nested field keys in setIn (#527)
  • Fixed setIn crashing on undefined state (#535, fixes #909)
  • Fixed inability to register fields with reserved property names like constructor (#520)

TypeScript

  • FormState.values is now correctly typed as non-optional (#502)
  • Fixed return type of submit function in type declarations (#499)
  • Fixed isEqual initialization TypeScript error (#517)
  • Added types field to package.json for better tooling compatibility (#518)
  • blur, change, and focus are now guaranteed to always be functions (#519, fixes #472)

v5.0.0

This release has converted the entire library from Flow to TypeScript.

There should be NO BREAKING CHANGES, but because so much code was touched, I'm bumping to a major version out of precaution.

Read more here: Final Form goes to TypeScript

v5.0.0-3

  • Better support for useSyncExternalStore (#498) e5cad94

... (truncated)

Commits
  • 89f45a2 chore: release v5.0.1 (#550)
  • 07e353a ci: add npm publish workflow on GitHub release (#549)
  • c7555ee Fix #988: Update initialValues when field initialValue prop changes (#543)
  • 4abbb6d Fix #317: Clear field modified flag after reset/initialize (#536)
  • c264d12 Fix #366: keepDirtyOnReinitialize with array fields (#538)
  • 18e1cc2 Test: regression test for dirty state after destroyOnUnregister re-registrati...
  • 0a1a3eb Test: regression tests for submitting not stuck when onSubmit returns Promise...
  • b37441e Fix #158: Guard against undefined field in getValidators (#532)
  • 9637154 Fix #186: Prevent crash when field unregistered during validation (#531)
  • d9e9e28 Fix #166: Clear async validation promise on rejection to prevent infinite loo...
  • Additional commits viewable in compare view

Updates react-final-form from 6.5.9 to 7.0.1

Release notes

Sourced from react-final-form's releases.

v7.0.1

Bug fixes since v7.0.0. No breaking changes.

Bug Fixes

  • Fixed useField returning the form's initialValues instead of the field's initial value on first render (#1060, fixes #1050)
  • Fixed type="select" with multiple not defaulting to [] (#1061)
  • Fixed React Native compatibility by removing the HTMLElement constraint (#1065)
  • Fixed destroyOnUnregister losing initial values when used in StrictMode (#1069)
  • Fixed checkbox and radio checked logic — was incorrectly using format instead of parse (#1074, fixes #974)
  • Fixed field name prop shadowing DOM properties (#1077, fixes #871)
  • Fixed FormSpy onChange not being called with initial state on mount (#1076)
  • Fixed field name and value falling out of sync when the name prop changes dynamically (#1078, fixes #869)
  • Fixed overwriting getter-only properties when spreading props in renderComponent (#1056, fixes #1055)
  • Fixed spreading of lazy state in FormSpy render props (#1059)
  • Fixed input prop override being ignored in the Field component (#1066)

Documentation

  • Added v7.0.0 migration guide for TypeScript users (#1064)

v7.0.0

This release has converted the entire library from Flow to TypeScript.

There should be NO BREAKING CHANGES, but because so much code was touched, I'm bumping to a major version out of precaution.

Read more here: Final Form goes to TypeScript

v7.0.0-0

  • Migrate to TypeScript (#1047) 875f4ce
  • Add React 19 to peer dependencies (#1046) b7f56df
  • Merge pull request #1017 from final-form/dependabot/npm_and_yarn/qs-6.5.3 43952cb
  • Merge pull request #1024 from final-form/dependabot/npm_and_yarn/follow-redirects-1.15.2 4f80b93
  • Bump follow-redirects from 1.14.4 to 1.15.2 57c7248
  • Merge pull request #1023 from final-form/dependabot/npm_and_yarn/axios-and-github-build-0.21.4 586555e
  • Bump axios and github-build f386587
  • Bump qs from 6.5.2 to 6.5.3 adf8184
  • Merge pull request #1019 from final-form/dependabot/npm_and_yarn/json5-1.0.2 527c9cb
  • Merge pull request #972 from Karadjordje/main 04019ac
  • Bump json5 from 1.0.1 to 1.0.2 3a465cf
  • Update ReactFinalForm.js c113dd8

final-form/react-final-form@v6.5.9...v7.0.0-0

Commits
  • 4271873 fix: add null guards on formState.values in getIn calls (TS2345) (#1088)
  • 3b98a99 chore: release v7.0.1 (#1087)
  • eba34f5 ci: add npm publish workflow on GitHub release (#1086)
  • 890df94 Fix #984: useField returns stale values when sibling updates form in useEffec...
  • fcea1a1 Test: regression tests for #914 (nested validator loop) and #850 (update duri...
  • 0e9c411 Test: regression test for nested Field with validator infinite loop (#914) (#...
  • f3803b0 Test: regression tests for submitting stuck on Promise<void> onSubmit (#903) ...
  • ec8ce81 Fix #869: Synchronize field name and value when name changes dynamically (#1078)
  • e82df67 fix: Call onChange with initial state in useEffect for FormSpy (#1076)
  • c035cf6 Fix: Prevent field name from shadowing DOM properties (fixes #871) (#1077)
  • Additional commits viewable in compare view
Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates @babel/core from 7.29.7 to 8.0.1

Release notes

Sourced from @​babel/core's releases.

v8.0.1 (2026-06-17)

This release includes a breaking change that was in the Babel 8 migration guide's Getting ready section and in the release post, but the actual removal of the feature from the codebase was accidentally not complete.

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

Committers: 2

v8.0.0 (2026-06-16)

NOTE: The changelog below is relative to v8.0.0-rc.6. You can find a summary of all the breaking changes shipped in the Babel 8 release line in the migration guide for users and migration guide for plugin developers.

Read the release blog post at http://babeljs.io/blog/2026/06/16/8.0.0!

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

v8.0.0-rc.6 (2026-05-25)

🐛 Bug Fix

🏠 Internal

  • babel-core
  • babel-compat-data, babel-register
  • babel-helper-transform-fixture-test-runner, babel-node

... (truncated)

Commits

Updates @babel/eslint-parser from 7.29.7 to 8.0.1

Release notes

Sourced from @​babel/eslint-parser's releases.

v8.0.1 (2026-06-17)

This release includes a breaking change that was in the Babel 8 migration guide's Getting ready section and in the release post, but the actual removal of the feature from the codebase was accidentally not complete.

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

Committers: 2

v8.0.0 (2026-06-16)

NOTE: The changelog below is relative to v8.0.0-rc.6. You can find a summary of all the breaking changes shipped in the Babel 8 release line in the migration guide for users and migration guide for plugin developers.

Read the release blog post at http://babeljs.io/blog/2026/06/16/8.0.0!

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/eslint-parser's changelog.

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

v8.0.0-rc.6 (2026-05-25)

🐛 Bug Fix

🏠 Internal

  • babel-core
  • babel-compat-data, babel-register
  • babel-helper-transform-fixture-test-runner, babel-node

... (truncated)

Commits

Updates @babel/plugin-transform-runtime from 7.29.7 to 8.0.1

Release notes

Sourced from @​babel/plugin-transform-runtime's releases.

v8.0.1 (2026-06-17)

This release includes a breaking change that was in the Babel 8 migration guide's Getting ready section and in the release post, but the actual removal of the feature from the codebase was accidentally not complete.

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

Committers: 2

v8.0.0 (2026-06-16)

NOTE: The changelog below is relative to v8.0.0-rc.6. You can find a summary of all the breaking changes shipped in the Babel 8 release line in the migration guide for users and migration guide for plugin developers.

Read the release blog post at http://babeljs.io/blog/2026/06/16/8.0.0!

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/plugin-transform-runtime's changelog.

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

🐛 Bug Fix

  • babel-generator
  • babel-plugin-transform-modules-systemjs

📝 Documentation

🏠 Internal

🏃‍♀️ Performance

v8.0.0-rc.6 (2026-05-25)

🐛 Bug Fix

🏠 Internal

  • babel-core
  • babel-compat-data, babel-register
  • babel-helper-transform-fixture-test-runner, babel-node

... (truncated)

Commits

Updates chai from 4.5.0 to 6.2.2

Release notes

Sourced from chai's releases.

v6.2.2

What's Changed

New Contributors

Full Changelog: chaijs/chai@v6.2.1...v6.2.2

v6.2.1

What's Changed

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 16, 2026
@psmagin
psmagin requested a review from a team July 20, 2026 07:08
@dependabot dependabot Bot changed the title fix: bump the all-deps group with 20 updates fix: bump the all-deps group across 1 directory with 20 updates Jul 21, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-deps-886fd9449f branch from bc6dd23 to 9065fd5 Compare July 21, 2026 21:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-deps-886fd9449f branch from 9065fd5 to 165698c Compare August 4, 2026 11:46
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-deps-886fd9449f branch from 165698c to ffe9d0a Compare August 16, 2026 01:04
Bumps the all-deps group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dom-helpers](https://github.com/react-bootstrap/dom-helpers) | `5.2.1` | `6.0.1` |
| [final-form](https://github.com/final-form/final-form) | `4.20.10` | `5.0.1` |
| [react-final-form](https://github.com/final-form/react-final-form) | `6.5.9` | `7.0.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.29.7` | `8.0.1` |
| [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.29.7` | `8.0.1` |
| [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) | `7.29.7` | `8.0.1` |
| [chai](https://github.com/chaijs/chai) | `4.5.0` | `6.2.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.5` | `10.8.1` |
| [eslint-plugin-no-only-tests](https://github.com/levibuzolic/eslint-plugin-no-only-tests) | `2.6.0` | `3.4.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `1.7.0` | `7.1.1` |
| [faker](https://github.com/Marak/Faker.js) | `4.1.0` | `6.6.6` |
| [mocha](https://github.com/mochajs/mocha) | `9.2.2` | `11.8.0` |
| [query-string](https://github.com/sindresorhus/query-string) | `5.1.1` | `9.5.0` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.8` |
| [react-intl](https://github.com/formatjs/formatjs) | `7.1.14` | `10.1.22` |
| [react-redux](https://github.com/reduxjs/react-redux) | `8.1.3` | `9.3.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `5.3.4` | `8.3.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `5.3.4` | `7.18.2` |
| [redux](https://github.com/reduxjs/redux) | `4.2.1` | `5.0.1` |



Updates `dom-helpers` from 5.2.1 to 6.0.1
- [Changelog](https://github.com/react-bootstrap/dom-helpers/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/dom-helpers@v5.2.1...v6.0.1)

Updates `final-form` from 4.20.10 to 5.0.1
- [Release notes](https://github.com/final-form/final-form/releases)
- [Commits](final-form/final-form@v4.20.10...v5.0.1)

Updates `react-final-form` from 6.5.9 to 7.0.1
- [Release notes](https://github.com/final-form/react-final-form/releases)
- [Commits](final-form/react-final-form@v6.5.9...v7.0.1)

Updates `@babel/core` from 7.29.7 to 8.0.1
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.1/packages/babel-core)

Updates `@babel/eslint-parser` from 7.29.7 to 8.0.1
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.1/eslint/babel-eslint-parser)

Updates `@babel/plugin-transform-runtime` from 7.29.7 to 8.0.1
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.1/packages/babel-plugin-transform-runtime)

Updates `chai` from 4.5.0 to 6.2.2
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v4.5.0...v6.2.2)

Updates `eslint` from 9.39.5 to 10.8.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.5...v10.8.1)

Updates `eslint-plugin-no-only-tests` from 2.6.0 to 3.4.0
- [Release notes](https://github.com/levibuzolic/eslint-plugin-no-only-tests/releases)
- [Changelog](https://github.com/levibuzolic/eslint-plugin-no-only-tests/blob/main/CHANGELOG.md)
- [Commits](levibuzolic/eslint-plugin-no-only-tests@v2.6.0...v3.4.0)

Updates `eslint-plugin-react-hooks` from 1.7.0 to 7.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/react/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/eslint-plugin-react-hooks@7.1.1/packages/eslint-plugin-react-hooks)

Updates `faker` from 4.1.0 to 6.6.6
- [Commits](https://github.com/Marak/Faker.js/commits)

Updates `mocha` from 9.2.2 to 11.8.0
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.8.0/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.2.2...v11.8.0)

Updates `query-string` from 5.1.1 to 9.5.0
- [Release notes](https://github.com/sindresorhus/query-string/releases)
- [Commits](sindresorhus/query-string@v5.1.1...v9.5.0)

Updates `react` from 18.3.1 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `react-dom` from 18.3.1 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `react-intl` from 7.1.14 to 10.1.22
- [Release notes](https://github.com/formatjs/formatjs/releases)
- [Commits](https://github.com/formatjs/formatjs/compare/react-intl@7.1.14...react-intl@10.1.22)

Updates `react-redux` from 8.1.3 to 9.3.0
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v8.1.3...v9.3.0)

Updates `react-router` from 5.3.4 to 8.3.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [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@8.3.0/packages/react-router)

Updates `react-router-dom` from 5.3.4 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `redux` from 4.2.1 to 5.0.1
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: "@babel/eslint-parser"
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: "@babel/plugin-transform-runtime"
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: chai
  dependency-version: 6.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: dom-helpers
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: eslint
  dependency-version: 10.7.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: eslint-plugin-no-only-tests
  dependency-version: 3.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: faker
  dependency-version: 6.6.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: final-form
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: mocha
  dependency-version: 11.7.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: query-string
  dependency-version: 9.4.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-final-form
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-intl
  dependency-version: 10.1.17
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-redux
  dependency-version: 9.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-router
  dependency-version: 8.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-router-dom
  dependency-version: 7.18.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: redux
  dependency-version: 5.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-deps-886fd9449f branch from ffe9d0a to db20eea Compare August 23, 2026 01:04
@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants