facebook/react
Pull Requests
Succeeded
#18000
useMutableSource hook [work in progress]
Succeeded
#28847
[Flight] Encode ReadableStream and AsyncIterables
Succeeded
#28846
Enable flag disableClientCache
Succeeded
#28845
Ensure sizebot doesn't swallow large diffs
Succeeded
#28844
Delete AUTHORS.md
Succeeded
#28843
Bump version from 18.2 to 18.3
Succeeded
#28842
Add early return to diffProperties
Succeeded
#28841
Create Fabric-specific version of ReactNativeAttributesPayload
Succeeded
#28840
React DevTools 5.0.2 -> 5.1.0
Succeeded
#28837
Flush direct streams in Bun
Succeeded
#28836
Add on(Caught|Uncaught|Recoverable) opts to RN
Succeeded
#28835
Fix mistaken "react-server" condition
Succeeded
#28834
Revert to use console.error for onRecoverableError on RN
Succeeded
#28833
Tests for effects behavior in modern and legacy strict modes during fast refresh
Succeeded
#28832
feat[devtools-fusebox]: support theme option
Succeeded
#28831
[Devtools] Look for a ReactMemoCacheSentinel on state
Succeeded
#28830
style: remove extra space for `package.json`
Succeeded
#28829
Remove redundant props assign
Succeeded
#28828
Remove `flight-browser` fixture
Succeeded
#28827
Run Closure on non-minified prod builds, too
Succeeded
#28826
Add failing test for string ref bug
Succeeded
#28825
Fix nightly release job for real
Succeeded
#28824
Fix nightly release job
Succeeded
#28821
Update AUTHORS
Succeeded
#28819
[Flight Reply] Encode Typed Arrays and Blobs
Succeeded
#28818
Move enableUseDeferredValueInitialArg to canary
Succeeded
#28816
Add flag to test fast jsx
Succeeded
#28815
[Float] Don't preload images inside `<noscript>`
Succeeded
#28814
[tests] add assertLog for legacy mode tests
Succeeded
#28813
Rename the react.element symbol to react.transitional.element
Succeeded
#28812
Remove Scheduler.log from ReactSuspenseFuzz-test
Succeeded
#28811
Hardcode disableIEWorkarounds for www
Succeeded
#28810
Reconciler: Don't retry synchronous render
Succeeded
#28809
ReactDOM.requestFormReset
Succeeded
#28808
Scaffolding for requestFormReset API
Succeeded
#28807
[Flight] Track Owner on AsyncLocalStorage When Available
Succeeded
#28805
Add publish workflow
Succeeded
#28804
Automatically reset forms after action finishes
Succeeded
#28803
Update CONTRIBUTING.md
Succeeded
#28802
[Fizz] hoistables should never flush before the preamble
Succeeded
#28801
Attempt to fix diff syncing for Meta
Succeeded
#28800
Fix: Suspend while recovering from hydration error
Succeeded
#28799
Removes the react-interactions project which is unused
Succeeded
#28798
Move Current Owner (and Cache) to an Async Dispatcher
Succeeded
#28797
Fix cloneElement using string ref w no owner
Succeeded
#28796
[Fizz] Stop publishing external-runtime to stable channel
Succeeded
#28795
[DOMreact-server entries may not exist in the bundles config but we want …
Succeeded
#28794
[Float][Fizz] Test float with script and external runtimes separately
Succeeded
#28793
Use use() in the Cache if available
Succeeded
#28791
Add docs
Succeeded
#28789
Rename SECRET INTERNALS to `__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE`
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    #11019

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