Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"react-test-renderer": "^19.2.6",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

React version mismatch between test renderer and core

High Severity

react-test-renderer is bumped to ^19.2.6 while react and react-dom remain at ^18.0.0. The renderer has a peer dependency on react of the same major version, so this mismatch will cause peer dependency conflicts and likely runtime failures in tests. Additionally, @types/react-test-renderer stays at ^18.0.0, which won't match the v19 API surface. All three test files importing from react-test-renderer will be affected.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 97ad6b3. Configure here.

"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-esbuild": "^6.1.1",
Expand Down
Loading