Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
This pull request updates dependencies and refines type usage across the codebase to support the latest versions of Next.js and React, improve type safety, and address minor compatibility issues. The most significant changes are grouped below by theme.
Dependency upgrades and compatibility:
next
,eslint-config-next
,react
, andreact-dom
to version 15.5.4 and 19.2.x respectively inpackages/app/package.json
and rootpackage.json
to support Next.js 15 and React 19. Also updated related type packages and addedresolutions
to enforce type consistency. [1] [2] [3] [4] [5]@testing-library/jest-dom
,@testing-library/react
,@testing-library/user-event
) andreact-bootstrap
for compatibility with React 19. [1] [2]Type and interface improvements:
React.ReactElement<any>
,RefObject<HTMLDivElement | null>
) to align with React 19 and improve type safety in files such asAutocompleteInput.tsx
,TimelineChart.tsx
,HyperJson.tsx
, and test files. [1] [2] [3] [4] [5]React.VFC
withReact.FC
in several components to comply with React 19 conventions. [1] [2] [3]Build and development tooling:
dev
script inpackages/app/package.json
to usenext dev --turbopack
for improved development performance.Styling fixes:
SearchPage.module.scss
to avoid style leakage and improve specificity.Testing and utilities:
use
→run
) inbase-test.ts
. [1] [2]