fix(deps): bump @tanstack/dom-vite to 0.1.0-alpha.7#842
Merged
tannerlinsley merged 1 commit intomainfrom Apr 21, 2026
Merged
Conversation
Picks up: - fix(react-dom): alias event.nativeEvent on dispatched handlers — fixes react-instantsearch site search (onChange throws on event.nativeEvent.isComposing without the alias, silently swallowing every keystroke). - fix(react-dom): fire onChange on every keystroke for text inputs (onChange → native input event for text-like inputs). - perf(react-dom): renderFiber pointer-table dispatch. - feat(react): dev-mode hint pointing at "use client" when a hooks error fires during RSC render. Combined with the Configure source-injection fix from #841, this restores in-dev site search.
✅ Deploy Preview for tanstack ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
📝 WalkthroughWalkthroughUpdated the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
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
Bumps the shim to 0.1.0-alpha.7, which fixes site search (the nativeEvent alias — react-instantsearch's SearchBox was silently throwing on every keystroke) and a few other things:
event.nativeEventon dispatched handlers. Without this, libraries that readevent.nativeEvent.isComposing(react-instantsearch) orevent.nativeEvent.shiftKey(DnD/UI kits) hit aTypeErrorinside their handler, the call is swallowed, and the user-visible action never runs. TanStack/react@1c71ed6onChangeon text-like inputs now fires on every keystroke (nativeinputevent) instead of only on blur/enter."use client"when a hooks error fires during RSC render. Zero prod-bundle impact.Combined with the
Configuresource-injection fix from #841, this restores in-dev site search end-to-end.Test plan
pnpm huskypasses (format + tsc + lint + smoke 4/4)Summary by CodeRabbit