facebook/react
Pull Requests
Succeeded
#18000
useMutableSource hook [work in progress]
Succeeded
#28665
Don't log onRecoverableError if the current commit fail
Succeeded
#28664
Remove errorHydratingContainer
Succeeded
#28663
Dymanic favorSafetyOverHydrationPerf
Succeeded
#28662
Make ART Concurrent if Legacy Mode is disabled
Succeeded
#28661
Update index.js
Succeeded
#28660
Remove orphaned disableJavaScriptURLs reference
Succeeded
#28657
Use the disableLegacyMode where ever we check the ConcurrentMode mode
Failed
#28656
Move ReactDOMLegacy implementation into RootFB
Succeeded
#28655
Add Flag to Favor Hydration Performance over User Safety
Succeeded
#28654
Support suppressHydrationWarning for element-ish text
Succeeded
#28653
Back out #28476 and #28458
Succeeded
#28652
Update error messages
Succeeded
#28650
Remove unmountComponentAtNode outside of legacy mode
Succeeded
#28649
Bump express from 4.18.2 to 4.19.2
Succeeded
#28648
Bump express from 4.17.1 to 4.19.2 in /fixtures/concurrent/time-slicing
Succeeded
#28647
Enable feature flags for v19
Succeeded
#28646
Bump canary versions to v19-canary
Succeeded
#28645
Turn on enableRenderableContext in experimental
Succeeded
#28644
Replace 'var' with 'let' or 'const' for Scheduler.js
Succeeded
#28643
Fix tests on main
Succeeded
#28642
Bump express from 4.17.1 to 4.19.2 in /fixtures/dom
Succeeded
#28641
Make onUncaughtError and onCaughtError Configurable
Succeeded
#28640
Bump express from 4.16.2 to 4.19.2 in /fixtures/packaging/brunch/dev
Succeeded
#28639
Cleanup `alwaysThrottleDisappearingFallbacks` Flag
Succeeded
#28638
Bump express from 4.16.2 to 4.19.2 in /fixtures/expiration
Succeeded
#28637
Bump express from 4.16.2 to 4.19.2 in /fixtures/packaging/brunch/prod
Succeeded
#28636
Bump express from 4.15.4 to 4.19.2 in /fixtures/attribute-behavior
Succeeded
#28635
Add support for preload meadia to ReactDOM
Succeeded
#28634
Bump express from 4.14.0 to 4.19.2 in /fixtures/fiber-debugger
Succeeded
#28633
Switch facebook-www build version to file content hash
Succeeded
#28632
Add useActionState to CHANGELOG-canary.md
Succeeded
#28631
s/form state/action state
Succeeded
#28630
Rh/throttle flag fix
Succeeded
#28629
Fix gating for alwaysThrottleDisappearingFallbacks
Succeeded
#28628
fix[devtools/ci]: split profiling cache test for different react versions and toEqual checker
Succeeded
#28627
[Fiber] Don't Rethrow Errors at the Root
Succeeded
#28625
Add Type: Feature Request to stalebot ignore
Succeeded
#28623
Update README.md
Succeeded
#28621
Bump webpack-dev-middleware from 5.3.3 to 5.3.4
Succeeded
#28620
Choose lazy or value ID based on whether model chunk was emitted
Succeeded
#28618
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /fixtures/flight
Succeeded
#28617
Make enableBigIntSupport a dynamic flag for Meta
Succeeded
#28616
Fix test after merge conflict
Succeeded
#28615
[Breaking] Remove disableJavaScriptURLs
Succeeded
#28614
Cleanup enableFormActions flag
Succeeded
#28613
Cleanup enableFloat flag
Succeeded
#28611
[Fizz] Recover from errors thrown by progressive enhancement form generation
Succeeded
#28610
[Flight Reply] Don't allow Symbols to be passed to a reply
Succeeded
#28609
[DO NOT LAND] Allow Previously Seen Client References to be Passed Back to a Reply
Succeeded
#28608
[RFC][ReactIs]: extract client/server reference types
Build Activity
Succeeded
#14333
Merged master and resolved useEvent conflicts I am being a little lazy here and merging instead of rebasing because practically every commit conflicted with Dominic's recent useEvent PR. If anyone feel strongly about this, I will revert the commit and...
Succeeded
#14183
Added new failing tests (pending a separate fix to React)
Succeeded
#13675
Added new failing tests (pending a separate fix to React)
Succeeded
#13664
Replaced .warn() with .error() for mutable source unsubscribe check
Succeeded
#13655
Misc. cleanup 1. Use currentlyRenderingFiber to calculate expiration time rather than using a ref. 2. Use polyfilled is() rather than Object.is() 3. Add __EXPERIMENTAL__ guard to test since new APIs aren't in stable build 4. Removed error code that wa...
Failed
#13652
Misc. cleanup 1. Use currentlyRenderingFiber to calculate expiration time rather than using a ref. 2. Use polyfilled is() rather than Object.is() 3. Add __EXPERIMENTAL__ guard to test since new APIs aren't in stable build 4. Removed error code that wa...
Succeeded
#13650
Defer getWorkInProgressRoot() call unless root is needed
Succeeded
#13647
Removed createMutableSource and useMutableSource exports from React stable release
Succeeded
#13641
Reenabled a pending disabled mutable source test
Succeeded
#13639
Whitespace only change
Succeeded
#13638
Misc. cleanup 1. Reset mutable source WIP version in complete and unwind work (rather than prepare fresh stack). 2. Add check to warn about multiple primary/secondary renderers using the same mutable source. (Patterned after our current context warnin...
Succeeded
#13513
Removed unused 'isMount' param from uMS
Succeeded
#13512
Pass underlying source to getVersion fn
Succeeded
#13478
Always treat reads from source as unsafe when getSnapshot changes I initially thought that we could treat them as safe if the returned snapshot value was the same, but this ignored the case where the underlying source was mutated between when the stat...
Succeeded
#13477
Always treat reads from source as unsafe when getSnapshot changes I initially thought that we could treat them as safe if the returned snapshot value was the same, but this ignored the case where the underlying source was mutated between when the stat...
Succeeded
#13049
Always treat reads from source as unsafe when getSnapshot changes I initially thought that we could treat them as safe if the returned snapshot value was the same, but this ignored the case where the underlying source was mutated between when the stat...
Failed
#13047
Always treat reads from source as unsafe when getSnapshot changes I initially thought that we could treat them as safe if the returned snapshot value was the same, but this ignored the case where the underlying source was mutated between when the stat...
Failed
#13039
Handle mutations that occur between scheduled updates and render
Succeeded
#12865
Always reset state queue when getSnapshot changes Even if the current snapshot value is the same, there may be pending, lower priority updates that we no longer want to eventually render.
Succeeded
#12854
Use a second effect to sync getSnapshot and stateHook values on commit This prevents the subscription callback from closing over stale values.
Succeeded
#12562
Added a (disabled) test to cover uSM throwing during sync update
Succeeded
#12416
Added a (disabled) test to cover uSM throwing during sync update
Succeeded
#12273
Added React debug tools test for new hook
Succeeded
#12120
Added React debug tools test for new hook
Succeeded
#11867
Refactor useMutableSource to be more efficient Remove unnecessary useRef in favor of hook state. Directly mutate composed state hook queue to reset in the case of a new subscribe or source.
Succeeded
#11859
Refactor useMutableSource to be more efficient Remove unnecessary useRef in favor of hook state. Directly mutate composed state hook queue to reset in the case of a new subscribe or source.
Succeeded
#11663
Split useMutableSource tests into separate suite
Succeeded
#11662
Read mutable source composed hooks from current dispatcher Rather than passing them in explicitly. This removes the extra function call.
Succeeded
#11644
Avoid deopt on changed getSnapshot function unless snapshot also changes getSnapshot should be memoized to only change when its inputs change, but if that memoization is done incorrectly (or if the new snapshot just happens to be the same regardless o...
Succeeded
#11642
Avoid deopt on changed getSnapshot function unless snapshot also changes getSnapshot should be memoized to only change when its inputs change, but if that memoization is done incorrectly (or if the new snapshot just happens to be the same regardless o...
Succeeded
#11639
Fixed a typo/bug in setState updater function
Succeeded
#11524
Refactored useMutableSource to use update queue For now, the hook just uses useEffect and useState under the hood. This probably makes it a little less effcient at runtime but perhaps a little smaller in code size. This change ended up being a little...
Succeeded
#11512
useMutableSource hook useMutableSource() enables React components to safely and efficiently read from a mutable external source in Concurrent Mode. The API will detect mutations that occur during a render to avoid tearing and it will automatically sch...
Succeeded
#11080
Refactored API to remove config in favor of directly passing functions
Succeeded
#11026
Check version before snapshot on commit We need to schedule a cascading update if source changes between render and commit, but it's probably faster to check version than snapshot, so let's at least check it first.
Succeeded
#11021
Added TODO for partial renderer
Succeeded
#11019
Refactor pending mutable source expiration time to be per root, not per root + per source
Succeeded
#11014
Changed Flow syntax that was causing invalid build syntax
Succeeded
#11012
Replaced Error constructor with invariant
Succeeded
#10903
Refactored hook to reflect changes in RFC
Succeeded
#10902
Refactored hook to reflect changes in RFC
Succeeded
#10900
Refactored hook to reflect changes in RFC
Canceled
#10554
Fixed high pri updates erasing pending lower pri subscription updates
Succeeded
#10553
Fixed high pri updates erasing pending lower pri subscription updates
Succeeded
#10311
Removed DEV warnings; they didn't follow precedent set by other hooks.
Succeeded
#10308
useMutableSource reduce amount of metadata cached during render
Succeeded
#10305
useMutableSource reduce amount of metadata cached during render
Succeeded
#10291
useMutableSource hook useMutableSource() enables React components to safely read from a mutable external source in Concurrent Mode. This API will detect mutations that occur during a render to avoid tearing. It will also automatically schedule updates...
Failed
#10288
useMutableSource hook useMutableSource() enables React components to safely read from a mutable external source in Concurrent Mode. This API will detect mutations that occur during a render to avoid tearing. It will also automatically schedule updates...
Succeeded

facebook/react    #10902

Started duration: 09:36
bvaughn opened pull request #18000 to master
Loading Sandboxes...
Loading Packages...
Loading Install Instructions...
Finished!
Loading...