chore(0.81): bump fmt to 12.1.0 to fix Xcode 26.4#2997
Merged
Saadnajmi merged 3 commits intoJun 26, 2026
Conversation
Cherry-pick of react@faeef2b - packages/react-native/third-party-podspecs/fmt.podspec - packages/react-native/third-party-podspecs/RCT-Folly.podspec - packages/react-native/gradle/libs.versions.toml - packages/rn-tester/Podfile.lock - scripts/releases/ios-prebuild/configuration.js fmt 11.0.2 uses consteval which is rejected by Xcode 26.4's stricter clang. fmt 12.1.0 fixes this. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
bace10d to
ddfda98
Compare
amgleitman
approved these changes
Jun 25, 2026
The init workflow installs a local react-native-macos tarball, but that package depends on @react-native-macos/virtualized-lists@0.81.8, which is not published to npm yet.\n\nPack and install virtualized-lists locally before installing react-native-macos, so the dependency graph is resolved from local artifacts during PR validation.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This reverts commit 12a28fe.
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.
Summary
Backport of the changes from branch
snajmi/bump-fmt-12.1.0to0.81-stable.Cherry-pick of react@faeef2b (react#56099).
fmt 11.0.2 enables
constevalon Apple clang ≥ 14 (which includes Xcode 26.4), but Xcode 26.4's stricter clang rejects consteval expressions in fmt's format-inl.h. fmt 12.1.0 fixes this.Note
Podfile.lockchecksums forRCT-Follymay need to be regenerated withpod installon0.81-stablesince theRCT-Folly.podspecdependency on fmt was updated.Test Plan
Same as the original PR.