KEMBAR78
Comparing 1dc3bdea...f1222f76 · facebook/react · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/react
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1dc3bdea
Choose a base ref
...
head repository: facebook/react
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f1222f76
Choose a head ref
  • 4 commits
  • 5 files changed
  • 3 contributors

Commits on Aug 12, 2025

  1. [DevTools] Fix index (#34187)

    I used the wrong indexer and tested with one entry.
    sebmarkbage authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    47fd2f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0422a00 View commit details
    Browse the repository at this point in the history
  3. [Fizz] Avoid hanging when suspending after aborting while rendering (#…

    …34192)
    
    This fixes an edge case where you abort the render while rendering a
    component that ends up Suspending. It technically only applied if you
    were deep enough to be inside `renderNode` and was not susceptible to
    hanging if the abort + suspending component was being tried inside
    retryRenderTask/retryReplaytask.
    
    The fix is to preempt the thenable checks in renderNode and check if the
    request is aborting and if so just bubble up to the task handler.
    
    The reason this hung before is a new task would get scheduled after we
    had aborted every other task (minus the currently rendering one). This
    led to a situation where the task count would not hit zero.
    gnoff authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    9baecbf View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2025

  1. [Fiber] Don't bind retry listener if it's in the cache (#34183)

    This did an unnecessary bind allocation even if there's cache hit.
    sebmarkbage authored Aug 13, 2025
    Configuration menu
    Copy the full SHA
    f1222f7 View commit details
    Browse the repository at this point in the history
Loading