-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: React 19 support #2349
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
Closed
Closed
feat: React 19 support #2349
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
2843b31
feat!: React 19 support
CodyJasonBennett 8f36899
fix: remaining type errors
CodyJasonBennett 4053dcc
chore: cleanup
CodyJasonBennett a3bd26d
docs: add missing react-use-measure dep
CodyJasonBennett a0652aa
chore: resolve conflicts
CodyJasonBennett f1b2617
docs: add missing use-gesture dep
CodyJasonBennett 6cdab5e
chore: prefer JSX.IntrinsicElements for backwards compat
CodyJasonBennett a7fd0ac
chore: keep PropsWithRef for React 18
CodyJasonBennett f201223
chore(SpringContext): add React 18 backwards compat
CodyJasonBennett f25225d
fix(SpringContext): swap mutation target
CodyJasonBennett f3cef19
fix(SpringContext): typo
CodyJasonBennett 9b12ea6
fix(SpringContext): feature check renderable context for consumer
CodyJasonBennett cafa5b8
chore: cleanup
CodyJasonBennett 97b33db
experiment: revert dep upgrade
CodyJasonBennett 20c7df5
experiment: restore dep upgrade
CodyJasonBennett 6c06950
experiment: keep MutableRefObject
CodyJasonBennett 33364f8
experiment: revert deps upgrade
CodyJasonBennett 51312c3
Revert "experiment: keep MutableRefObject"
CodyJasonBennett 59579e2
fix: add annotation for 18.3 immutable useRef
CodyJasonBennett a61d9e7
experiment: keep MutableRefObject
CodyJasonBennett 983ca3f
experiment: upgrade deps to React 19
CodyJasonBennett c30d8a0
chore: upgrade to rc.2
CodyJasonBennett efda668
chore: cleanup
CodyJasonBennett 7c57dff
experiment: test suite fixes
CodyJasonBennett 3aaa957
chore: use R3F v9 stable
CodyJasonBennett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ | |
"@changesets/cli": "2.27.11", | ||
"@commitlint/cli": "19.6.1", | ||
"@commitlint/config-conventional": "19.6.0", | ||
"@react-three/fiber": "8.17.10", | ||
"@react-three/fiber": "^9.0.4", | ||
"@remix-run/dev": "2.15.2", | ||
"@simonsmith/cypress-image-snapshot": "9.1.0", | ||
"@swc/core": "1.10.4", | ||
|
@@ -79,8 +79,8 @@ | |
"@types/jest": "29.5.14", | ||
"@types/lodash.clamp": "4.0.9", | ||
"@types/lodash.shuffle": "4.2.9", | ||
"@types/react": "18.3.18", | ||
"@types/react-dom": "18.3.5", | ||
"@types/react": "19.0.2", | ||
"@types/react-dom": "19.0.2", | ||
"@types/react-lazyload": "3.2.3", | ||
"@types/react-native": "0.73.0", | ||
"@types/styled-components": "5.1.34", | ||
|
@@ -95,8 +95,8 @@ | |
"mock-raf": "npm:@react-spring/[email protected]", | ||
"prettier": "3.4.2", | ||
"pretty-quick": "4.0.0", | ||
"react": "18.3.1", | ||
"react-dom": "18.3.1", | ||
"react": "19.0.0", | ||
"react-dom": "19.0.0", | ||
"react-konva": "18.2.10", | ||
"react-native": "0.76.5", | ||
"react-zdog": "1.2.2", | ||
|
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { ReactNode } from 'react' | ||
import { ReactNode, JSX } from 'react' | ||
import { | ||
Lookup, | ||
ObjectFromUnion, | ||
|
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.