Bump React Native version in non-Expo integration tests - #14
Merged
Conversation
ofalvai
force-pushed
the
push-yvtkuqmzrovl
branch
from
August 4, 2026 07:57
b54ce28 to
5e276b1
Compare
ofalvai
commented
Aug 4, 2026
| gem 'logger' | ||
| gem 'benchmark' | ||
| gem 'mutex_m' | ||
| gem 'nkf' |
Collaborator
Author
There was a problem hiding this comment.
Ruby 3.4 no longer bundles this in the stdlib, needs to be added as a 3rd party dep
ofalvai
commented
Aug 4, 2026
| @@ -1,3 +1,3 @@ | |||
| module.exports = { | |||
| preset: 'react-native', | |||
| preset: '@react-native/jest-preset', | |||
Collaborator
Author
There was a problem hiding this comment.
ofalvai
commented
Aug 4, 2026
| { | ||
| "extends": "@react-native/typescript-config", | ||
| "compilerOptions": { | ||
| "types": ["jest"] |
Collaborator
Author
There was a problem hiding this comment.
ofalvai
commented
Aug 4, 2026
| ); | ||
| MTL_ENABLE_DEBUG_INFO = YES; | ||
| ONLY_ACTIVE_ARCH = YES; | ||
| OTHER_CFLAGS = ( |
Collaborator
Author
There was a problem hiding this comment.
This file is generated at pod install, and it picked up new RN-specific settings coming from the RN pods
ofalvai
marked this pull request as ready for review
August 4, 2026 08:00
miklosboros
approved these changes
Aug 4, 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.
Context
We are building and testing against RN 0.82.1 at the moment
Investigation details, decisions
That
fmtC compiler workaround introduced in #2: can be removed, latest RN version ships an updatedfmtversion with the fix.MainApplication.ktin test templates: this had to be aligned with the latest RN conventions. Fortunately, our docs are already using the newer APIs.AppDelegate.swift: there were no changes between the two RN versions, we are good.Sample projects under
Examples: I decided to upgrade RN in only theCodePushDemoproject.CodePushDemoAppCppis on an ancient RN version, so I did not bother with it.CodePushExpoDemoAppis upgraded in #13.