Skip to content

Comments

Avoid proxying React modules through workUnitStore (#85486)#8

Open
MitchLewis930 wants to merge 1 commit intopr_038_beforefrom
pr_038_after
Open

Avoid proxying React modules through workUnitStore (#85486)#8
MitchLewis930 wants to merge 1 commit intopr_038_beforefrom
pr_038_after

Conversation

@MitchLewis930
Copy link

@MitchLewis930 MitchLewis930 commented Jan 30, 2026

PR_038


Note

Medium Risk
Touches global dev/runtime hooks used during prerendering (console patching and error stack augmentation); mistakes could degrade debugging output or prerender abort/dimming behavior, though runtime semantics outside dev should be largely unaffected.

Overview
Moves dev-only React integrations (console dimming and owner-stack stitching) off of workUnitStore and onto a new global registry (runtime-reacts.external). React instances are now registered from the app page module and consumed via getServerReact()/getClientReact() for cacheSignal() and captureOwnerStack().

This removes captureOwnerStack from prerender work-unit store types and stops threading it through multiple prerender store constructions, updating associated tests and NFT production fixture expectations to include the new external module.

Written by Cursor Bugbot for commit c0c75e4. This will update automatically on new commits. Configure here.

Today the `captureOwnerStack()` function is provided to shared utilities
through an AsyncLocalStorage that scopes the method from the appropriate
React instance. This is so that external code like patches to sync IO
methods can still generate errors with the appropriate React owner
information even when the patched code itself is not bundled and can be
called from etiher SSR or RSC contexts.

This works but it makes plumbing the React instances around tricky.
There is a simpler way. Most of the time you can just try both React's.
If one gives you a non-null/undefined result then you know you are in
that scope. If neither do then you're outside a React scope altogether.

In this change I remove `captureOwnerStack()` from the workUnitStore
types and just call it from the shared server runtime which gives even
external code access to the appropriate React instances for bundled code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants