chore: update dependencies#1
Open
jontiritilli wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Updates outdated dependencies to their latest versions.
Dependencies updated
dependencies:
@reduxjs/toolkit: ^1.2.5 → ^2.12.0 (MAJOR — v1 → v2)react-redux: ^7.2.0 → ^9.3.0 (MAJOR — v7 → v9)ryuu.js: ^4.2.0 → ^5.1.4typescript: ^4.0.3 → ^5.8.0devDependencies:
@domoinc/ryuu-proxy: ^4.0.6 → ^5.0.2@domoinc/da: ^1.3.5 → ^2.3.2@types/node: ^12.0.0 → ^22.0.0@types/react-redux: ^7.1.7 → ^7.1.34@typescript-eslint/eslint-plugin: ^7.18.0 → ^8.60.1@typescript-eslint/parser: ^7.18.0 → ^8.60.1@types/jest: ^24.0.0 → ^29.5.14Packages kept as-is
react/@types/react/@types/react-dom— held at ^18.3.0@storybook/*packages — held at 6.xreact-scripts— held at 5.0.1Notes on major bumps
@reduxjs/toolkit1 → 2: RTK 2.0 droppedcreateStorere-export, changed middleware defaults, and updatedcreateReducer/createSliceto use Immer 10. Review any direct use ofcreateStore, custom middleware configuration, and any code relying on the previous Immer behavior.react-redux7 → 9: v8 dropped support for React < 16.8.3 and removed the legacy context API; v9 drops React 16/17 support entirely (requires React 18+, which this project already uses) and ships ESM-only. Review any use of the legacyconnect()HOC patterns and ensure the build pipeline handles ESM correctly.Test plan
yarn installand confirm no resolution errorsyarn buildand confirm a clean buildyarn testand confirm all tests passyarn lintand confirm no new lint errors