[blog] Draft 0.87 release post - #5201
Merged
Merged
Conversation
Adds the draft release blog post for React Native 0.87, covering the Strict TypeScript API default, Metro 0.87, Swift Package Manager preview, and AGP 9 support. The Strict TypeScript API section and its before/after screenshots are from Alex Hunt's draft fragment (huntie/react-native-website@0.87-draft-blogpost-fragment). Co-authored-by: Alex Hunt <alexeh@meta.com>
Wrap code symbols in backticks and fence the Obj-C import example as a diff block. Unfenced, <React/RCTAppDelegate.h> is parsed as JSX by MDX and fails the build. Also converts the XCFramework and SwiftPM limitation run-on lines into lists, and tags the SwiftPM snippet as sh.
Two entries pointed at slugs that no heading generates, so they were no-ops. Also adds the missing Prebuilt iOS Core entry.
Normalizes the Metro section indentation into a proper paragraph plus list, and drops stray blank lines and double spaces. yarn ci:lint now passes clean.
authors was a plain scalar, so Docusaurus read the whole comma-separated line as a single author key and failed the build. Make it a YAML list.
Member
cipolleschi
requested changes
Aug 10, 2026
cipolleschi
left a comment
Contributor
There was a problem hiding this comment.
Overall it is good. There are some changes needed for SwiftPM support. I left suggestions everywhere, so it should be a matter of integrate them.
|
|
||
| Source builds are unaffected. | ||
|
|
||
| ### Swift Package Manager support for iOS (Preview) |
Contributor
There was a problem hiding this comment.
Suggested change
| ### Swift Package Manager support for iOS (Preview) | |
| ### Experimental Swift Package Manager support for iOS |
|
|
||
| ### Swift Package Manager support for iOS (Preview) | ||
|
|
||
| React Native 0.87 adds preview support for Swift Package Manager as an alternative to CocoaPods on iOS. It is opt-in and additive; CocoaPods remains the default and the supported path. The SwiftPM path consumes the same prebuilt XCFrameworks React Native already publishes. Setup needs only Xcode — no Ruby, no Bundler, no CocoaPods. |
Contributor
There was a problem hiding this comment.
Suggested change
| React Native 0.87 adds preview support for Swift Package Manager as an alternative to CocoaPods on iOS. It is opt-in and additive; CocoaPods remains the default and the supported path. The SwiftPM path consumes the same prebuilt XCFrameworks React Native already publishes. Setup needs only Xcode — no Ruby, no Bundler, no CocoaPods. | |
| React Native 0.87 adds experimental support for Swift Package Manager as an alternative to CocoaPods on iOS. It is opt-in and additive; CocoaPods remains the default and the supported path. The SwiftPM path consumes the same prebuilt XCFrameworks React Native already publishes. | |
| This new setup only needs Xcode — no Ruby, no Bundler, no CocoaPods. |
|
|
||
| The command injects Swift package references into your existing `.xcodeproj` instead of replacing the project. Your signing, capabilities, and build phases stay untouched. `npx react-native spm deinit` reverses the change exactly. | ||
|
|
||
| You only run that command once. After the first setup, you do not run it again when your dependencies change. Install or remove a native package, then build. The project detects the change and re-runs autolinking for you. There is no `pod install` step to remember after every dependency change. |
Contributor
There was a problem hiding this comment.
Suggested change
| You only run that command once. After the first setup, you do not run it again when your dependencies change. Install or remove a native package, then build. The project detects the change and re-runs autolinking for you. There is no `pod install` step to remember after every dependency change. | |
| ::: important | |
| You only run that command once. After the first setup, you do not run it again when your dependencies change. Install or remove a native package, then build. The project detects the change and re-runs autolinking for you. There is no `pod install` step to remember after every dependency change. | |
| ::: |
huntie
reviewed
Aug 10, 2026
Co-authored-by: Riccardo Cipolleschi <riccardo.cipolleschi@gmail.com>
Co-authored-by: Christian Falch <875252+chrfalch@users.noreply.github.com>
Co-authored-by: Riccardo Cipolleschi <riccardo.cipolleschi@gmail.com>
Co-authored-by: Christian Falch <875252+chrfalch@users.noreply.github.com>
Co-authored-by: Alex Hunt <hello@alexhunt.dev>
Co-authored-by: Riccardo Cipolleschi <riccardo.cipolleschi@gmail.com>
zeyap
marked this pull request as ready for review
August 10, 2026 13:25
huntie
reviewed
Aug 10, 2026
cipolleschi
previously requested changes
Aug 10, 2026
Comment on lines
+130
to
+137
| ### Prebuilt iOS Core: the Clang VFS overlay is gone | ||
|
|
||
| 0.87 improves modularization of the prebuilt XCFrameworks. Headers now resolve through standard framework and header search path mechanics, and every namespace has exactly one physical home. Four XCFrameworks carry the header surface: | ||
|
|
||
| - `React.xcframework` | ||
| - `ReactNativeHeaders.xcframework` (new, headers only) | ||
| - `ReactNativeDependencies.xcframework` | ||
| - `ReactNativeDependenciesHeaders.xcframework` (new, headers only) |
Contributor
There was a problem hiding this comment.
This whole section should be removed.
|
|
||
| - [Strict TypeScript API by default](/blog/2026/08/10/react-native-0.87#strict-typescript-api-by-default) | ||
| - [Faster, leaner Metro](/blog/2026/08/10/react-native-0.87#faster-leaner-metro) | ||
| - [Prebuilt iOS Core: Improved modularization of React Native's XCFrameworks](/blog/2026/08/10/react-native-0.87#prebuilt-ios-core-the-clang-vfs-overlay-is-gone) |
Contributor
There was a problem hiding this comment.
I would completely remove this.
Co-authored-by: Alex Hunt <hello@alexhunt.dev>
zeyap
enabled auto-merge (squash)
August 11, 2026 17:16
fabriziocucci
approved these changes
Aug 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Draft release blog post for React Native 0.87.