114 wires and counting
$ status: archived — this briefing has stopped; the archive stays readable. browse live briefings →

$ status

wire 2026-08-01
stories 11

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

REACT FIBER FIXES FRAGMENTS, FLIGHT ADDS WEAK THENABLES

By RepoJournal · Filed · About Meta · Composed from the cited sources · methodology

React's Fiber reconciler is collecting Host Singletons in Fragments again, unblocking dispatchEvent calls that were silently failing.

The change revisits a prior exclusion that broke event dispatch on empty singletons like `<body>` when nested in Fragment instances [1]. Separately, React Flight gained a new experimental thenable status, `'pending_weak'` [2], which allows streams to close without waiting for all promises to settle, a significant shift in backpressure handling for streaming SSR. The weak thenable stays forever pending on the client if the connection closes before it resolves, placing responsibility on the application to handle unfulfilled references. On React Native, multiple projects tightened their APIs: Fabric is now unconditional in ReactFragment, deprecating the `fabricEnabled` override [4], while RCTImageEditingManager shed its dead `RCT_EXPORT_METHOD` macro since TurboModule codegen already enforces dispatch [5]. A Swift Package Manager fix ensures the autolinking `--config-command` flag persists across rebuilds [6], closing a gap that broke every subsequent build after the first successful add command. A tintColor transparency regression in Props 2.0 on Android was fixed [3].

Action items

References

  1. [1] [Fiber] Collect Host Singleton children of Fragments ↗ facebook/react
  2. [2] [Flight] Add 'pending_weak' to Flight thenable protocol ↗ facebook/react
  3. [3] fix(android): props 2.0 image tintColor=transparent broken (#57668) ↗ facebook/react-native
  4. [4] Deprecate fabricEnabled from ReactFragment (#57764) ↗ facebook/react-native
  5. [5] Drop RCT_EXPORT_METHOD from RCTImageEditingManager (#57773) ↗ facebook/react-native
  6. [6] fix(swiftpm): persist --config-command so the in-build sync keeps using it (#57756) ↗ facebook/react-native

Quick answers

What shipped in Meta on August 1, 2026?
React's Fiber reconciler is collecting Host Singletons in Fragments again, unblocking dispatchEvent calls that were silently failing. In total, 8 commits and 3 pull requests landed.
Who contributed to Meta on August 1, 2026?
8 developers shipped this update, including eps1lon, acdlite, hoxyq, Hanno J. Gödecke, Pieter De Baets, Christoph Purrer, Christian Falch, and Rob Hogan.
What were the notable Meta updates?
[Fiber] Collect Host Singleton children of Fragments, [Flight] Add 'pending_weak' to Flight thenable protocol, and fix(android): props 2.0 image tintColor=transparent broken (#57668).