-
Notifications
You must be signed in to change notification settings - Fork 0
Update dependencies #431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependencies #431
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,14 +38,14 @@ | |
| "mantine-form-zod-resolver": "^1.3.0", | ||
| "pdfjs-dist": "^5.4.394", | ||
| "pluralize": "^8.0.0", | ||
| "react": "^19.2.0", | ||
| "react-dom": "^19.2.0", | ||
| "react": "^19.2.1", | ||
| "react-dom": "^19.2.1", | ||
| "react-pdf": "^10.2.0", | ||
| "react-pdftotext": "^1.3.0", | ||
| "react-qr-reader": "^3.0.0-beta-1", | ||
| "react-router-dom": "^7.9.5", | ||
| "zod": "^4.1.12", | ||
| "zod-validation-error": "^4.0.2" | ||
| "react-router-dom": "^7.10.0", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: I couldn't find an official react-router / react-router-dom v7.10.0 release or release notes. The official changelog and GitHub releases list stops at v7.9.6 (latest stable) and the npm/package tracking sites show only pre-release tags for 7.10.0 (e.g. 7.10.0-pre.0 / 7.10.0-pre.1). Sources:
Would you like me to watch for a published v7.10.0 and summarize its breaking changes when it appears, or check the 7.10.0 pre-release notes/commit history for any breaking changes now? Citations:
Use a stable, officially released version of react-router-dom. v7.10.0 is not yet officially released—only pre-release versions (7.10.0-pre.0, 7.10.0-pre.1, etc.) exist. The latest stable release is v7.9.6. Using 🤖 Prompt for AI Agents |
||
| "zod": "^4.1.13", | ||
| "zod-validation-error": "^5.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@eslint/compat": "^1.2.8", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update
eslint-plugin-react-hooksto v6+ for React 19.2 compatibility.React 19.2 requires eslint-plugin-react-hooks v6.0.0 or higher for new hook semantics, but the current version in devDependencies is ^5.2.0. This version mismatch could result in missed linting warnings for hooks.
Update the eslint-plugin-react-hooks version in devDependencies:
Verify the latest version and update both dependencies and lock file:
🤖 Prompt for AI Agents