From 194141ea7e95b1fd0e3ba39a5f9d8434dfdf3765 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Oct 2025 23:04:00 +0000 Subject: [PATCH 1/2] deps(frontend)(deps): bump react-hook-form Bumps the react-ecosystem group with 1 update in the / directory: [react-hook-form](https://github.com/react-hook-form/react-hook-form). Updates `react-hook-form` from 7.54.2 to 7.63.0 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.63.0) --- updated-dependencies: - dependency-name: react-hook-form dependency-version: 7.63.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: react-ecosystem ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 397a881..a0ef206 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "i18next-http-backend": "^2.6.1", "react": "^18.3.1", "react-dom": "^18.3.1", - "react-hook-form": "^7.53.0", + "react-hook-form": "^7.65.0", "react-i18next": "^15.0.1", "react-redux": "^9.1.2", "react-router-dom": "^6.26.1", diff --git a/yarn.lock b/yarn.lock index 3c54b8d..14ab391 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3373,10 +3373,10 @@ react-dom@^18.3.1: loose-envify "^1.1.0" scheduler "^0.23.2" -react-hook-form@^7.53.0: - version "7.54.2" - resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.54.2.tgz" - integrity sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg== +react-hook-form@^7.65.0: + version "7.65.0" + resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.65.0.tgz#6139dac77ed1081d0178b6830dc6f5ff6ff86361" + integrity sha512-xtOzDz063WcXvGWaHgLNrNzlsdFgtUWcb32E6WFaGTd7kPZG3EeDusjdZfUsPwKCKVXy1ZlntifaHZ4l8pAsmw== react-i18next@^15.0.1: version "15.4.1" From 370ec0dc1cb4b11815015bc6efab6b74f0013e3e Mon Sep 17 00:00:00 2001 From: grok-rs Date: Mon, 20 Oct 2025 18:50:05 +0300 Subject: [PATCH 2/2] fix: add isReady property to FormState mock for react-hook-form v7.63.0 compatibility --- src/test/utils/form-mocks.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/utils/form-mocks.ts b/src/test/utils/form-mocks.ts index 4a58900..dd0d0f2 100644 --- a/src/test/utils/form-mocks.ts +++ b/src/test/utils/form-mocks.ts @@ -51,6 +51,7 @@ export const createMockFormState = ( dirtyFields: {}, touchedFields: {}, validatingFields: {}, + isReady: false, ...overrides, });