Skip to content

fix: bump the all-deps group with 24 updates#3036

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

fix: bump the all-deps group with 24 updates#3036
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-deps-2dc931ea53

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the all-deps group with 24 updates:

Package From To
final-form 4.20.10 5.0.1
final-form-arrays 3.1.0 4.0.1
history 4.10.1 5.3.0
ky 0.23.0 2.0.2
query-string 5.1.1 9.4.1
react-final-form 6.5.9 7.0.1
react-final-form-arrays 3.1.4 5.0.0
react-final-form-listeners 1.0.3 3.0.1
use-session-storage-state 18.2.0 19.0.1
@babel/core 7.29.7 8.0.1
@babel/eslint-parser 7.29.7 8.0.1
@babel/plugin-proposal-decorators 7.29.7 8.0.2
@babel/plugin-transform-runtime 7.29.7 8.0.1
@babel/preset-env 7.29.7 8.0.2
@babel/preset-react 7.29.7 8.0.1
eslint 7.32.0 10.7.0
eslint-plugin-jest 24.7.0 29.15.4
react 18.3.1 19.2.7
react-dom 18.3.1 19.2.7
react-intl 7.1.14 10.1.17
react-router-dom 5.3.4 7.18.1
regenerator-runtime 0.13.11 0.14.1
sinon 7.5.0 22.0.0
zustand 4.5.7 5.0.14

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 final-form-arrays from 3.1.0 to 4.0.1

Release notes

Sourced from final-form-arrays's releases.

v4.0.1

Bug fixes since v4.0.0. No breaking changes.

Bug Fixes

  • Fixed field state not being reset at the correct insertion index in insert and unshift (#103, fixes #44)
  • Fixed empty array not being preserved when removing the last item (#104, fixes #95)
  • Fixed field functions not being preserved when moving fields with different shapes (#105, fixes #51)
  • Fixed removeBatch using lexicographic instead of numeric sort, causing wrong items to be removed (#102, fixes #97)

v4.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

v4.0.0-1

  • fix peer dep 982b820

final-form/final-form-arrays@v4.0.0-0...v4.0.0-1

v4.0.0-0

  • remove flow stuff d67f80a
  • Fix npm -ci 2082904
  • husky 9b89223
  • Convert to TypeScript (#99) 30133eb

final-form/final-form-arrays@v3.1.0...v4.0.0-0

Commits
  • 6232a3d chore: release v4.0.1 (#109)
  • 9fba63e fix: replace rollup-plugin-typescript2 with @​rollup/plugin-typescript for rol...
  • d812bb5 Add regression test for #49 (remove mutator after move) (#107)
  • fd5a7b6 ci: add npm publish workflow on GitHub release (#108)
  • ed07005 Fix #97: Use numeric sort in removeBatch to fix wrong item removal (#102)
  • 33ba997 Test: Regression test for data preservation after remove (#165) (#106)
  • 1c8f6ec Fix #51: Preserve field functions when moving fields with different shapes (#...
  • f45dc05 Fix #95: Preserve empty array when removing last item (#104)
  • 656916f Fix #44: Reset field state at insertion index in insert/unshift (#103)
  • b115aa3 Migrate from bundlesize to size-limit (#100)
  • Additional commits viewable in compare view

Updates history from 4.10.1 to 5.3.0

Release notes

Sourced from history's releases.

v5.3.0

This release provides support for native ESM consumption of all exports.

v5.3.0-pre.0

No release notes provided.

v5.2.0

🐛 Bug fixes

  • Fixed a few type declarations and deprecated the following types:
    • State (now set to unknown which will require consumer type narrowing)
    • PartialPath (use Partial<Path> instead)
    • PartialLocation (use Partial<Location> instead)
  • Fixed a regression related to the createPath return value (#813)

✨ Features

  • We now use statically analyzable CJS exports. This enables named imports in Node ESM scripts (See the commit).

Full Changelog: remix-run/history@v5.1.0...v5.2.0

v5.1.0

Because the prior 5.0.2 release removed the State type parameter from Location, this was technically a breaking change. To correct for this, I'm bumping this as a minor release. It won't affect runtime code, but it may affect your development experience and tests if you were using that parameter.

The State type export is also restored, so you shouldn't have issues with installing React Router v6.

Oh, by the way, did you hear we released React Router v6?

Full Changelog: remix-run/history@v5.0.3...v5.1.0

v5.0.3

Fixed parsePath adding incorrectly adding search

v5.0.2

Just a couple fixes:

  • Fixed search params persisting on redirects
  • Changed the location.state type to any and removed the generic on Location

Full Changelog: remix-run/history@v5.0.1...v5.0.2

v5.0.1

This patch release contains a tiny TypeScript update to use the built-in Partial utility for PartialPath and PartialLocation. We always love it when we can ship just a little less code!

🙏 Credits

Thanks to @​liuhanqu, @​hanquliu, @​chaance and @​mjackson for your contributions!

v5.0.0

Today we are very pleased to announce the stable release of history version 5!

Overview

... (truncated)

Commits
  • c9bc27d Version 5.3.0
  • c9b1b1b Version 5.3.0-pre.0
  • 68543c6 Merge branch 'main' into release/v5.3.0
  • ba1cd3c fix: import history from ESM (#934)
  • 3966191 Merge pull request #914 from remix-run/logan/format-action
  • 8117ab2 chore: Update readme + docblock references
  • f5cb295 chore: fix lockfile
  • 224cda0 chore: Merge branch 'main' into dev
  • aef6c2b fix: Use statically analyzable CJS exports
  • eac4edd chore(ci): add format action
  • Additional commits viewable in compare view

Updates ky from 0.23.0 to 2.0.2

Release notes

Sourced from ky's releases.

v2.0.2

  • Fix init hook URLSearchParams deletions add0703
  • Fix tuple searchParams mutations leaking across init-hook requests (#861) 346f898

sindresorhus/ky@v2.0.1...v2.0.2

v2.0.1

  • Improve compatibility with custom fetch implementations (#858) 2971991
  • Fix fetch option forwarding 2df9b7e

sindresorhus/ky@v2.0.0...v2.0.1

v2.0.0

Breaking

  • Require Node.js 22 f1da0fc
  • Unify hook signatures around a single state object (#827) ecdd45e
    • All hooks now receive a single {request, options, retryCount, ...} state object instead of separate arguments.
  • Rename prefixUrl to prefix, and allow leading slashes in input (#606) 1f2ad7f
  • Make beforeError hook receive all errors, not just HTTPError (#829) 101c74b
  • Make .json() throw on empty bodies and 204 responses instead of returning an empty string (#854) 1b8e1ff
  • Merge searchParams with input URL instead of replacing (#840) 29e78fe
  • Strip Ky-specific properties from normalized options passed to hooks (#826) 433febd
  • Treat hook errors as fatal outside retry handling (#834) 90c6d00

New

  • Add totalTimeout option for an overall timeout across all retries (#848) c20d7c7
  • Add baseUrl option for standard URL resolution (#606) 1f2ad7f
    • baseUrl uses standard URL resolution: /users means origin-root, users means relative to the base path.
    • prefix does simple string joining first, so /users and users both append to the prefix the same way. Use it only when you want that behavior.
  • Add data property to HTTPError with pre-parsed response body (#823) 1341f5c
    • The response body is automatically consumed and parsed, fixing resource leaks and making error details immediately available without awaiting (#642).
  • Add init hook (#841) 87c6740
  • Add NetworkError class and tighten retry logic (#842) eaf0b80
  • Add Standard Schema validation for .json() (#830) 94741a9
  • Add replaceOption helper for .extend() (#846) bb8412e
  • Add request and options to beforeError hook state (#835) 01e0b85
  • Add request/response context to parseJson option (#849) 3713ce8
  • Don't throw HTTPError for opaque responses from no-cors requests (#847) 1d15eb6
  • Gracefully ignore onUploadProgress when request streams are unsupported (#845) 1e38ff4

Fixes

  • Fix beforeRequest hooks being skipped when a Request is returned (#832) aec65db
  • Ignore non-Errors returned by beforeError hooks (#833) a541fc0

... (truncated)

Commits

Updates query-string from 5.1.1 to 9.4.1

Release notes

Sourced from query-string's releases.

v9.4.1

  • Fix relative URLs with fragments 872fb6f

sindresorhus/query-string@v9.4.0...v9.4.1

v9.4.0

  • Improve performance 482b19a

sindresorhus/query-string@v9.3.1...v9.4.0

v9.3.1

  • Fix custom type functions with array formats 720f2ff

sindresorhus/query-string@v9.3.0...v9.3.1

v9.3.0

  • Add replacer option to stringify() 509014d
  • Fix encoded separator incorrectly splitting single values into arrays ec67fea

sindresorhus/query-string@v9.2.2...v9.3.0

v9.2.2

  • Accept valueless parameters as true when using a boolean with types option (#410) 557a550

sindresorhus/query-string@v9.2.1...v9.2.2

v9.2.1

  • Fix stringifyUrl not respecting passed in options 38dae7b

sindresorhus/query-string@v9.2.0...v9.2.1

v9.2.0

  • Add support for boolean type in the types option (#407) 10d263a

sindresorhus/query-string@v9.1.2...v9.2.0

... (truncated)

Commits

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 react-final-form-arrays from 3.1.4 to 5.0.0

Release notes

Sourced from react-final-form-arrays's releases.

v5.0.0

Breaking Change

Default FieldArray subscription changed from 'all' to {length, value, error}.

Previously, FieldArray subscribed to the entire form state by default, causing the whole array to re-render on any form change. The new default subscribes only to length, value, and error — which is what virtually all FieldArray usages actually need, and results in significantly better performance.

Migration: If you rely on other subscription fields (e.g. dirty, touched, active) in your FieldArray children, pass an explicit subscription prop:

<FieldArray name="friends" subscription={{ length: true, value: true, error: true, dirty: true }}>

Bug Fixes

  • Fixed lazy getters in the meta object not being preserved (#188)
  • Fixed types not being correctly exposed in the build output (#186)
  • Fixed whole-form validation being triggered unnecessarily when no field-level validation is provided (#162)
  • Fixed async validate returning a Promise object as ARRAY_ERROR instead of awaiting it (#193, fixes #176)

Updated Peer Dependencies

  • final-form: ^5.0.1
  • final-form-arrays: ^4.0.1
  • react-final-form: ^7.0.1

v4.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

v4.0.0-1

  • update ffarrays dep 6087b9e

final-form/react-final-form-arrays@v4.0.0-0...v4.0.0-1

v4.0.0-0

  • Convert to TypeScript (#183) 3b52ad2

final-form/react-final-form-arrays@v3.1.4...v4.0.0-0

Commits
  • abe54d9 chore: release v5.0.0 (#197)
  • b8937b2 ci: add npm publish workflow on GitHub release (#196)
  • b2e169c Fix #176: Await async validate to prevent Promise as ARRAY_ERROR (#193)
  • 31808dd Perf: change default FieldArray subscription from 'all' to {length, value, er...
  • 9f231a9 Test: add regression tests for form.getFieldState data preservation after rem...
  • c365924 Migrate from bundlesize to size-limit (#192)
  • c9f6268 Avoid whole-form validation when no field validation is provided. (#162)
  • 586e6ea fix types exposure in build process (#186)
  • 34cb258 Fix #167: Preserve lazy getters in meta object (#188)
  • 7a44bcf Add CODEOWNERS - require @​erikras approval for all PRs
  • Additional commits viewable in compare view

Updates react-final-form-listeners from 1.0.3 to 3.0.1

Release notes

Sourced from react-final-form-listeners's releases.

v3.0.1

Bug fix release. No breaking changes.

Bug Fixes

  • Fixed infinite re-render loop when a watched field value is NaN — now uses Object.is() for equality comparison (#59, fixes #11)

v3.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

v2.0.0

  • Convert to TypeScript (#47) 35df2d9

final-form/react-final-form-listeners@v1.0.3...v2.0.0

Commits

Updates use-session-storage-state from 18.2.0 to 19.0.1

Release notes

Sourced from use-session-storage-state's releases.

v19.0.1

  • ✏️ remove CodeSandbox link (it&#39;s broken) b0c5aae
  • ✏️ expand the related section eecb0d5

astoilkov/use-session-storage-state@v19.0.0...v19.0.1

v19.0.0

This package is now ESM only.

  • 🔀 🏗 packages is ESM only now 79787aa
  • ✨ bring all new things from use-local-storage-state e8345c8 c729a21

astoilkov/use-session-storage-state@v18.2.0...v19.0.0

Commits
  • a6557a6 v19.0.1
  • b0c5aae ✏️ remove CodeSandbox link (it's broken)
  • eecb0d5 ✏️ expand the related section
  • 8136d8b v19.0.0
  • 6d0e8c9 ✏️ remove code coverage metric badge
  • d2616f3 🏗 🔥 remove code coverage
  • 997b2f9 🏗 run on Node 18 and 20
  • 79787aa 🏗 packages is ESM only now
  • c729a21 ✅ use vitest for testing + new tests
  • 9cbda3b 🔀 new repository field syntax
  • Additional commits viewable in compare view

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<...

    Description has been truncated

Bumps the all-deps group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [final-form](https://github.com/final-form/final-form) | `4.20.10` | `5.0.1` |
| [final-form-arrays](https://github.com/final-form/final-form-arrays) | `3.1.0` | `4.0.1` |
| [history](https://github.com/remix-run/history) | `4.10.1` | `5.3.0` |
| [ky](https://github.com/sindresorhus/ky) | `0.23.0` | `2.0.2` |
| [query-string](https://github.com/sindresorhus/query-string) | `5.1.1` | `9.4.1` |
| [react-final-form](https://github.com/final-form/react-final-form) | `6.5.9` | `7.0.1` |
| [react-final-form-arrays](https://github.com/final-form/react-final-form-arrays) | `3.1.4` | `5.0.0` |
| [react-final-form-listeners](https://github.com/final-form/react-final-form-listeners) | `1.0.3` | `3.0.1` |
| [use-session-storage-state](https://github.com/astoilkov/use-session-storage-state) | `18.2.0` | `19.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-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators) | `7.29.7` | `8.0.2` |
| [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) | `7.29.7` | `8.0.1` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.29.7` | `8.0.2` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.29.7` | `8.0.1` |
| [eslint](https://github.com/eslint/eslint) | `7.32.0` | `10.7.0` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `24.7.0` | `29.15.4` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.7` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.7` |
| [react-intl](https://github.com/formatjs/formatjs) | `7.1.14` | `10.1.17` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `5.3.4` | `7.18.1` |
| [regenerator-runtime](https://github.com/facebook/regenerator) | `0.13.11` | `0.14.1` |
| [sinon](https://github.com/sinonjs/sinon) | `7.5.0` | `22.0.0` |
| [zustand](https://github.com/pmndrs/zustand) | `4.5.7` | `5.0.14` |


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 `final-form-arrays` from 3.1.0 to 4.0.1
- [Release notes](https://github.com/final-form/final-form-arrays/releases)
- [Commits](final-form/final-form-arrays@v3.1.0...v4.0.1)

Updates `history` from 4.10.1 to 5.3.0
- [Release notes](https://github.com/remix-run/history/releases)
- [Commits](remix-run/history@v4.10.1...v5.3.0)

Updates `ky` from 0.23.0 to 2.0.2
- [Release notes](https://github.com/sindresorhus/ky/releases)
- [Commits](sindresorhus/ky@v0.23.0...v2.0.2)

Updates `query-string` from 5.1.1 to 9.4.1
- [Release notes](https://github.com/sindresorhus/query-string/releases)
- [Commits](sindresorhus/query-string@v5.1.1...v9.4.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 `react-final-form-arrays` from 3.1.4 to 5.0.0
- [Release notes](https://github.com/final-form/react-final-form-arrays/releases)
- [Commits](final-form/react-final-form-arrays@v3.1.4...v5.0.0)

Updates `react-final-form-listeners` from 1.0.3 to 3.0.1
- [Release notes](https://github.com/final-form/react-final-form-listeners/releases)
- [Commits](final-form/react-final-form-listeners@v1.0.3...v3.0.1)

Updates `use-session-storage-state` from 18.2.0 to 19.0.1
- [Release notes](https://github.com/astoilkov/use-session-storage-state/releases)
- [Commits](astoilkov/use-session-storage-state@v18.2.0...v19.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-proposal-decorators` from 7.29.7 to 8.0.2
- [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.2/packages/babel-plugin-proposal-decorators)

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 `@babel/preset-env` from 7.29.7 to 8.0.2
- [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.2/packages/babel-preset-env)

Updates `@babel/preset-react` 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-preset-react)

Updates `eslint` from 7.32.0 to 10.7.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v7.32.0...v10.7.0)

Updates `eslint-plugin-jest` from 24.7.0 to 29.15.4
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v24.7.0...v29.15.4)

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

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

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

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

Updates `regenerator-runtime` from 0.13.11 to 0.14.1
- [Release notes](https://github.com/facebook/regenerator/releases)
- [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.13.11...regenerator-runtime@0.14.1)

Updates `sinon` from 7.5.0 to 22.0.0
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/CHANGES.md)
- [Commits](sinonjs/sinon@v7.5.0...v22.0.0)

Updates `zustand` from 4.5.7 to 5.0.14
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@4.5.7...v5.0.14)

---
updated-dependencies:
- 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: final-form-arrays
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: history
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: ky
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: query-string
  dependency-version: 9.4.1
  dependency-type: direct:production
  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-final-form-arrays
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: react-final-form-listeners
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: use-session-storage-state
  dependency-version: 19.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-deps
- 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-proposal-decorators"
  dependency-version: 8.0.2
  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: "@babel/preset-env"
  dependency-version: 8.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: "@babel/preset-react"
  dependency-version: 8.0.1
  dependency-type: direct:development
  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-jest
  dependency-version: 29.15.4
  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-intl
  dependency-version: 10.1.17
  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: regenerator-runtime
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: sinon
  dependency-version: 22.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-deps
- dependency-name: zustand
  dependency-version: 5.0.14
  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 added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 16, 2026
@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