Node.js shipped a new LTS line, React Native pushed patch releases on two branches in the same week, and the most talked-about React Native code of late August is an animation runtime that got 94x faster by throwing out the old module system. Quiet week on the surface. Busy underneath.
Here is what mattered in React and React Native for the week of August 24 to 30, 2026.
Releases
React Native 0.87.1 and 0.86.3
Two patch releases in one week: 0.87.1 on August 26 and 0.86.3 on August 24. Nothing dramatic in either, which is exactly what you want from a patch train two weeks after a major. If you moved to 0.87 for the Strict TypeScript API default, take 0.87.1. If you are holding on 0.86 until your native deps catch up with AGP 9, 0.86.3 is your branch. We have shipped apps through enough of these cycles to say: the second patch is usually the safe one.
Node.js 24 goes LTS, Node 26.8 lands
The Node release machine had a big Wednesday. Node 24.20.0 “Krypton” moved to LTS on August 26, and Node 26.8.0 landed on the Current line the same day. For React Native folks this matters more than it looks: RN 0.87 already requires Node 22 minimum, and CI images tend to jump straight to the newest LTS. Check your .nvmrc before your pipeline does it for you.
React Router 8.3.1 and 7.18.3
Both live branches got patches on August 28. The v7 line still getting same-day fixes alongside v8 is the kind of maintenance discipline that makes a dependency easy to trust. Web-side React, but most of us ship both.
React Navigation: v7 patches, v8 alpha 44
The core navigation library for React Native patched @react-navigation/native to 7.3.18 and pushed v8 to alpha 44 on August 26. The v8 alpha train has been rolling for weeks now. Alpha 44 is a lot of alphas. I read that as an API surface still moving, so no, do not build your next production app on it yet.
Reanimated backports: 4.5.4 and 4.5.5
Software Mansion shipped two 4.5.x patches on August 26 and 27 while 4.6.0 sits as latest on npm. Backporting fixes to the previous minor a week after a new one ships is a good sign for everyone who pins minors and upgrades on their own schedule. Which should be all of you.
Next.js 16.3.3, Expo SDK 57 patch train
Next.js took a 16.3.3 maintenance release on August 25 (plus 15.5.24 for the previous major), and Expo quietly rolled SDK 57 up to 57.0.18 through the week. Routine, boring, apply them.
News
Expo Observe gets its official announcement
Observe went GA around August 20, and on August 25 Expo published the formal announcement post: performance monitoring for Expo apps, now production ready. We covered the GA itself in a previous digest; the post is worth a read for the architecture notes alone. Crash-free rates and cold-start tracking without wiring up a third-party SDK is a real reduction in setup friction for small teams.
expo-paste-input: pasting images should not be this hard
My favorite read of the week. Expo’s engineers published a post on August 28 about building expo-paste-input, a native module that lets a React Native TextInput accept pasted images, GIFs and stickers. The trigger was a chat app interaction, and anyone who has built messaging UIs knows this pain intimately: the input field is never just a text box. We wrote about what goes into React Native chat libraries recently, and rich paste is exactly the kind of table-stakes detail that eats a sprint when you roll your own.
How SWSH ships: an automated release pipeline on Expo
Also from the Expo blog this week, a case study on SWSH’s automated mobile release pipeline (August 26). Store submissions triggered from CI, no human on the critical path. If your team still runs releases from one developer’s laptop, read it and feel appropriately uncomfortable.
Worth reading
Rive rebuilt on Nitro Modules: up to 94x faster
Margelo published a breakdown of rewriting the Rive React Native SDK on Nitro Modules: up to 94x faster multi-view loads, 4.7x lower memory. The interesting part is not the headline number. It is the why: React Native’s classic module layer models modules, not objects, so Rive’s file and view-model concepts could not be expressed naturally. Nitro’s HybridObjects let a loaded .riv asset live as a real native object, preloaded once and shared across views. This is the strongest argument I have seen yet that Nitro is not just a faster bridge, it is a better model.
React 19.3 is close
The React canary channel published builds almost daily this week (19.3.0-canary builds through August 28). No announcement yet, but the cadence says 19.3 stable is near. Nothing to do today except skim the canary changelogs if you maintain a library.
Adjacent: TanStack Solid Query hits 6.0 RC
Not React, but the same family: @tanstack/solid-query reached 6.0.0-rc.1 on August 28. TanStack majors tend to arrive on the Solid adapter first and telegraph what the React adapter gets next, so it earns a line here.
That is the week. Patches, an LTS, and one genuinely great engineering writeup. If I missed something that deserved a slot, tell me about it and I will fold it into next Monday’s edition.