Move ViewTransitions helpers to ReactFiberCommitViewTransitions - #32462
Merged
Conversation
|
Comparing: 9b042f9d593f965d8c7a42f8f5fce322f403381b...acd25c1ac775b8dbbd9f1fa0ce846f7e0d9c2b33 Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: (No significant changes) |
jackpope
approved these changes
Feb 25, 2025
This was referenced Feb 26, 2025
brandhaug
added a commit
to brandhaug/b2b-saas-starter
that referenced
this pull request
Sep 14, 2026
## Dependency Updates | Package | From | To | Type | | --- | --- | --- | --- | | `react` | 19.2.8 | 19.3.0 | minor | | `react-dom` | 19.2.8 | 19.3.0 | minor | ## Release Notes <details> <summary><b>react</b> (19.2.8 → 19.3.0)</summary> Below is a list of all new features, APIs, and bug fixes. Read the [React 19.3 release post](https://react.dev/blog/2026/09/09/react-19-3) for more information. ## New React Features - `<ViewTransition />`: Adds `<ViewTransition />` and `addTransitionType` APIs to power View Transition animations in React (@<!---->sebmarkbage, @<!---->jackpope, @<!---->gaearon: [#31975](react/react#31975), [#31987](react/react#31987), [#31996](react/react#31996), [#31999](react/react#31999), [#32001](react/react#32001), [#32002](react/react#32002), [#32028](react/react#32028), [#32029](react/react#32029), [#32031](react/react#32031), [#32034](react/react#32034), [#32038](react/react#32038), [#32041](react/react#32041), [#32050](react/react#32050), [#32090](react/react#32090), [#32105](react/react#32105), [#32254](react/react#32254), [#32379](react/react#32379), [#32422](react/react#32422), [#32462](react/react#32462), [#32540](react/react#32540), [#32545](react/react#32545), [#32585](react/react#32585), [#32599](react/react#32599), [#32611](react/react#32611), [#32612](react/react#32612), [#32617](react/react#32617), [#32651](react/react#32651), [#32653](react/react#32653), [#32656](react/react#32656), [#32664](https://github. …[full notes](https://github.com/react/react/releases/tag/v19.3.0) </details> <details> <summary><b>react-dom</b> (19.2.8 → 19.3.0)</summary> Below is a list of all new features, APIs, and bug fixes. Read the [React 19.3 release post](https://react.dev/blog/2026/09/09/react-19-3) for more information. ## New React Features - `<ViewTransition />`: Adds `<ViewTransition />` and `addTransitionType` APIs to power View Transition animations in React (@<!---->sebmarkbage, @<!---->jackpope, @<!---->gaearon: [#31975](react/react#31975), [#31987](react/react#31987), [#31996](react/react#31996), [#31999](react/react#31999), [#32001](react/react#32001), [#32002](react/react#32002), [#32028](react/react#32028), [#32029](react/react#32029), [#32031](react/react#32031), [#32034](react/react#32034), [#32038](react/react#32038), [#32041](react/react#32041), [#32050](react/react#32050), [#32090](react/react#32090), [#32105](react/react#32105), [#32254](react/react#32254), [#32379](react/react#32379), [#32422](react/react#32422), [#32462](react/react#32462), [#32540](react/react#32540), [#32545](react/react#32545), [#32585](react/react#32585), [#32599](react/react#32599), [#32611](react/react#32611), [#32612](react/react#32612), [#32617](react/react#32617), [#32651](react/react#32651), [#32653](react/react#32653), [#32656](react/react#32656), [#32664](https://github. …[full notes](https://github.com/react/react/releases/tag/v19.3.0) </details> --- *This PR was auto-generated by [catalog-update-action](https://github.com/brandhaug/catalog-update-action).* Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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.
This doesn't change anything. It just moves some functions.
This moves the view transitions helper functions into its own file. This is similar to how I already moved ReactFiberCommitEffects and ReactFiberCommitHostEffects out of ReactFiberCommitWork.
This makes it a bit easier to navigate and get an overview of ReactFiberCommitWork but another motivation is also so that I can refer to these helpers from ReactFiberApplyGesture.