From a0368a8bbf1a3a53992daaebc673ae5f9b55fb24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jan 2022 03:43:49 -0800 Subject: [PATCH] Bump react-native from 0.66.4 to 0.67.1 in /react-native/ReactNativeFlipperExample (#3341) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Bumps [react-native](https://github.com/facebook/react-native) from 0.66.4 to 0.67.1.
Release notes

Sourced from react-native's releases.

0.67.1

A patch release including fixes to unblock Detox and Android JSC builds


You can participate in the conversation on the status of this release at this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

0.67.0

0.67 stable is out!

This release includes 385 commits with 75 contributors! Thank you to all our contributors new and old! You can find the full changelog here.

0.67.0-rc.6

We are aiming for this to be our candidate for stable. We aim to promote 0.67.0-rc.6 to stable in the first half of January 2022.


To test it, run

npx react-native init RN067RC6 --version 0.67.0-rc.6

You can participate in the conversation on the status of this release at this discussion.


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

0.67.0-rc.5

We are aiming for this to be our candidate for stable (�)

... (truncated)

Changelog

Sourced from react-native's changelog.

v0.67.1

Fixed

Android specific

iOS specific

v0.67.0

Added

Android specific

iOS specific

Changed

Android specific

iOS specific

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-native&package-manager=npm_and_yarn&previous-version=0.66.4&new-version=0.67.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request resolved: https://github.com/facebook/flipper/pull/3341 Test Plan: React Native Android 1. Start Android emulator (Pixel 4, API 27 Oreo 8.1) 2. Go to ReactNativeFlipperExample 3. Run yarn 4. Run yarn use-local-deps 5. Run yarn android 6. Wait for the app to start 7. Check "Logs" plugin works 8. Check "Network" plugin works (click on "IS NPM UP?") 9. Check "Layout" plugin works 10. Check "React Native Tic-Tac-Toe" plugin works React Native iOS 1. Go to ReactNativeFlipperExample 2. Run yarn 3. Run yarn use-local-deps 4. Go to ReactNativeFlipperExample/ios 5. Run rm -f Podfile.lock 6. Run pod install --repo-update 7. Go to ReactNativeFlipperExample 8. Run yarn ios 9. Wait for the app to start 10. Check "Logs" plugin works 11. Check "Network" plugin works (click on "IS NPM UP?") 12. Check "Layout" plugin works 13. Check "React Native Tic-Tac-Toe" plugin works Reviewed By: mweststrate Differential Revision: D33741751 Pulled By: lblasa fbshipit-source-id: 0bf7778615c327f3d2ef497932e77e94fb0d766d --- .../android/app/build.gradle | 2 +- .../res/drawable/rn_edit_text_material.xml | 29 ++ .../app/src/main/res/values/styles.xml | 1 + .../android/build.gradle | 9 +- .../android/gradle.properties | 2 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../ReactNativeFlipperExample/ios/Podfile | 4 +- .../ios/Podfile.lock | 433 +++++++++--------- .../project.pbxproj | 12 +- .../ReactNativeFlipperExample/package.json | 4 +- .../ReactNativeFlipperExample/yarn.lock | 41 +- 11 files changed, 287 insertions(+), 252 deletions(-) create mode 100644 react-native/ReactNativeFlipperExample/android/app/src/main/res/drawable/rn_edit_text_material.xml diff --git a/react-native/ReactNativeFlipperExample/android/app/build.gradle b/react-native/ReactNativeFlipperExample/android/app/build.gradle index 19999f394..67357b4fa 100644 --- a/react-native/ReactNativeFlipperExample/android/app/build.gradle +++ b/react-native/ReactNativeFlipperExample/android/app/build.gradle @@ -121,7 +121,7 @@ def jscFlavor = 'org.webkit:android-jsc:+' /** * Whether to enable the Hermes VM. * - * This should be set on project.ext.react and mirrored here. If it is not set + * This should be set on project.ext.react and that value will be read here. If it is not set * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode * and the benefits of using Hermes will therefore be sharply reduced. */ diff --git a/react-native/ReactNativeFlipperExample/android/app/src/main/res/drawable/rn_edit_text_material.xml b/react-native/ReactNativeFlipperExample/android/app/src/main/res/drawable/rn_edit_text_material.xml new file mode 100644 index 000000000..a902b2a3a --- /dev/null +++ b/react-native/ReactNativeFlipperExample/android/app/src/main/res/drawable/rn_edit_text_material.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/react-native/ReactNativeFlipperExample/android/app/src/main/res/values/styles.xml b/react-native/ReactNativeFlipperExample/android/app/src/main/res/values/styles.xml index 319eb0ca1..5e4edc6e7 100644 --- a/react-native/ReactNativeFlipperExample/android/app/src/main/res/values/styles.xml +++ b/react-native/ReactNativeFlipperExample/android/app/src/main/res/values/styles.xml @@ -3,6 +3,7 @@ diff --git a/react-native/ReactNativeFlipperExample/android/build.gradle b/react-native/ReactNativeFlipperExample/android/build.gradle index 51b1a94ff..d1790b420 100644 --- a/react-native/ReactNativeFlipperExample/android/build.gradle +++ b/react-native/ReactNativeFlipperExample/android/build.gradle @@ -29,8 +29,6 @@ buildscript { allprojects { repositories { - mavenCentral() - mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") @@ -39,6 +37,13 @@ allprojects { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } + mavenCentral { + // We don't want to fetch react-native from Maven Central as there are + // older versions over there. + content { + excludeGroup "com.facebook.react" + } + } google() jcenter() diff --git a/react-native/ReactNativeFlipperExample/android/gradle.properties b/react-native/ReactNativeFlipperExample/android/gradle.properties index 2c7edf90c..e98103e76 100644 --- a/react-native/ReactNativeFlipperExample/android/gradle.properties +++ b/react-native/ReactNativeFlipperExample/android/gradle.properties @@ -14,7 +14,7 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -# Default value: -Xmx10248m -XX:MaxPermSize=256m +# Default value: -Xmx1024m -XX:MaxPermSize=256m # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. diff --git a/react-native/ReactNativeFlipperExample/android/gradle/wrapper/gradle-wrapper.properties b/react-native/ReactNativeFlipperExample/android/gradle/wrapper/gradle-wrapper.properties index 7665b0fa9..a0f7639f7 100644 --- a/react-native/ReactNativeFlipperExample/android/gradle/wrapper/gradle-wrapper.properties +++ b/react-native/ReactNativeFlipperExample/android/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/react-native/ReactNativeFlipperExample/ios/Podfile b/react-native/ReactNativeFlipperExample/ios/Podfile index 412a48313..34b1c73a7 100644 --- a/react-native/ReactNativeFlipperExample/ios/Podfile +++ b/react-native/ReactNativeFlipperExample/ios/Podfile @@ -2,7 +2,7 @@ require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' source 'https://github.com/CocoaPods/Specs' -platform :ios, '11.0' +platform :ios, '11' # used for automatic bumping flipperkit_version = '0.131.0' @@ -27,7 +27,7 @@ target 'ReactNativeFlipperExample' do # Versions are explicitly pinned to be able to forcefully test against the latest versions. # use_flipper!() should work as well and pick the React Native defaults - use_flipper!({ 'Flipper' => flipperkit_version, 'Flipper-Folly' => '2.6.10', 'Flipper-RSocket' => '1.4.3', 'Flipper-DoubleConversion' => '3.1.7', 'Flipper-Glog' => '0.3.9', 'Flipper-PeerTalk' => '0.0.4' }) + use_flipper!({ 'Flipper' => flipperkit_version, 'Flipper-Folly' => '2.6.10', 'Flipper-RSocket' => '1.4.3', 'Flipper-DoubleConversion' => '3.1.7', 'Flipper-Glog' => '0.3.9', 'Flipper-PeerTalk' => '0.0.4', 'OpenSSL-Universal' => '1.1.1100' }) post_install do |installer| react_native_post_install(installer) diff --git a/react-native/ReactNativeFlipperExample/ios/Podfile.lock b/react-native/ReactNativeFlipperExample/ios/Podfile.lock index cad503ded..849baa1b6 100644 --- a/react-native/ReactNativeFlipperExample/ios/Podfile.lock +++ b/react-native/ReactNativeFlipperExample/ios/Podfile.lock @@ -2,14 +2,14 @@ PODS: - boost (1.76.0) - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - FBLazyVector (0.66.4) - - FBReactNativeSpec (0.66.4): + - FBLazyVector (0.67.1) + - FBReactNativeSpec (0.67.1): - RCT-Folly (= 2021.06.28.00-v2) - - RCTRequired (= 0.66.4) - - RCTTypeSafety (= 0.66.4) - - React-Core (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) + - RCTRequired (= 0.67.1) + - RCTTypeSafety (= 0.67.1) + - React-Core (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) - Flipper (0.131.0): - Flipper-Folly (~> 2.6) - Flipper-RSocket (~> 1.4) @@ -93,271 +93,271 @@ PODS: - fmt (~> 6.2.1) - glog - libevent - - RCTRequired (0.66.4) - - RCTTypeSafety (0.66.4): - - FBLazyVector (= 0.66.4) + - RCTRequired (0.67.1) + - RCTTypeSafety (0.67.1): + - FBLazyVector (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTRequired (= 0.66.4) - - React-Core (= 0.66.4) - - React (0.66.4): - - React-Core (= 0.66.4) - - React-Core/DevSupport (= 0.66.4) - - React-Core/RCTWebSocket (= 0.66.4) - - React-RCTActionSheet (= 0.66.4) - - React-RCTAnimation (= 0.66.4) - - React-RCTBlob (= 0.66.4) - - React-RCTImage (= 0.66.4) - - React-RCTLinking (= 0.66.4) - - React-RCTNetwork (= 0.66.4) - - React-RCTSettings (= 0.66.4) - - React-RCTText (= 0.66.4) - - React-RCTVibration (= 0.66.4) - - React-callinvoker (0.66.4) - - React-Core (0.66.4): + - RCTRequired (= 0.67.1) + - React-Core (= 0.67.1) + - React (0.67.1): + - React-Core (= 0.67.1) + - React-Core/DevSupport (= 0.67.1) + - React-Core/RCTWebSocket (= 0.67.1) + - React-RCTActionSheet (= 0.67.1) + - React-RCTAnimation (= 0.67.1) + - React-RCTBlob (= 0.67.1) + - React-RCTImage (= 0.67.1) + - React-RCTLinking (= 0.67.1) + - React-RCTNetwork (= 0.67.1) + - React-RCTSettings (= 0.67.1) + - React-RCTText (= 0.67.1) + - React-RCTVibration (= 0.67.1) + - React-callinvoker (0.67.1) + - React-Core (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.4) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-Core/Default (= 0.67.1) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/CoreModulesHeaders (0.66.4): + - React-Core/CoreModulesHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/Default (0.66.4): + - React-Core/Default (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/DevSupport (0.66.4): + - React-Core/DevSupport (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.4) - - React-Core/RCTWebSocket (= 0.66.4) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-jsinspector (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-Core/Default (= 0.67.1) + - React-Core/RCTWebSocket (= 0.67.1) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-jsinspector (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.66.4): + - React-Core/RCTActionSheetHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTAnimationHeaders (0.66.4): + - React-Core/RCTAnimationHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTBlobHeaders (0.66.4): + - React-Core/RCTBlobHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTImageHeaders (0.66.4): + - React-Core/RCTImageHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTLinkingHeaders (0.66.4): + - React-Core/RCTLinkingHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTNetworkHeaders (0.66.4): + - React-Core/RCTNetworkHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTSettingsHeaders (0.66.4): + - React-Core/RCTSettingsHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTTextHeaders (0.66.4): + - React-Core/RCTTextHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTVibrationHeaders (0.66.4): + - React-Core/RCTVibrationHeaders (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-Core/RCTWebSocket (0.66.4): + - React-Core/RCTWebSocket (0.67.1): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.4) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-Core/Default (= 0.67.1) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-perflogger (= 0.67.1) - Yoga - - React-CoreModules (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - React-CoreModules (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.4) - - React-Core/CoreModulesHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - React-RCTImage (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-cxxreact (0.66.4): + - RCTTypeSafety (= 0.67.1) + - React-Core/CoreModulesHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - React-RCTImage (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-cxxreact (0.67.1): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-callinvoker (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsinspector (= 0.66.4) - - React-logger (= 0.66.4) - - React-perflogger (= 0.66.4) - - React-runtimeexecutor (= 0.66.4) - - React-hermes (0.66.4): + - React-callinvoker (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsinspector (= 0.67.1) + - React-logger (= 0.67.1) + - React-perflogger (= 0.67.1) + - React-runtimeexecutor (= 0.67.1) + - React-hermes (0.67.1): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.06.28.00-v2) - RCT-Folly/Futures (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-jsiexecutor (= 0.66.4) - - React-jsinspector (= 0.66.4) - - React-perflogger (= 0.66.4) - - React-jsi (0.66.4): + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-jsiexecutor (= 0.67.1) + - React-jsinspector (= 0.67.1) + - React-perflogger (= 0.67.1) + - React-jsi (0.67.1): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-jsi/Default (= 0.66.4) - - React-jsi/Default (0.66.4): + - React-jsi/Default (= 0.67.1) + - React-jsi/Default (0.67.1): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-jsiexecutor (0.66.4): + - React-jsiexecutor (0.67.1): - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-perflogger (= 0.66.4) - - React-jsinspector (0.66.4) - - React-logger (0.66.4): + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-perflogger (= 0.67.1) + - React-jsinspector (0.67.1) + - React-logger (0.67.1): - glog - react-native-flipper (0.129.0): - React-Core - - React-perflogger (0.66.4) - - React-RCTActionSheet (0.66.4): - - React-Core/RCTActionSheetHeaders (= 0.66.4) - - React-RCTAnimation (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - React-perflogger (0.67.1) + - React-RCTActionSheet (0.67.1): + - React-Core/RCTActionSheetHeaders (= 0.67.1) + - React-RCTAnimation (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.4) - - React-Core/RCTAnimationHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTBlob (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - RCTTypeSafety (= 0.67.1) + - React-Core/RCTAnimationHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTBlob (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/RCTBlobHeaders (= 0.66.4) - - React-Core/RCTWebSocket (= 0.66.4) - - React-jsi (= 0.66.4) - - React-RCTNetwork (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTImage (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - React-Core/RCTBlobHeaders (= 0.67.1) + - React-Core/RCTWebSocket (= 0.67.1) + - React-jsi (= 0.67.1) + - React-RCTNetwork (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTImage (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.4) - - React-Core/RCTImageHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - React-RCTNetwork (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTLinking (0.66.4): - - FBReactNativeSpec (= 0.66.4) - - React-Core/RCTLinkingHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTNetwork (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - RCTTypeSafety (= 0.67.1) + - React-Core/RCTImageHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - React-RCTNetwork (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTLinking (0.67.1): + - FBReactNativeSpec (= 0.67.1) + - React-Core/RCTLinkingHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTNetwork (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.4) - - React-Core/RCTNetworkHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTSettings (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - RCTTypeSafety (= 0.67.1) + - React-Core/RCTNetworkHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTSettings (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.4) - - React-Core/RCTSettingsHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-RCTText (0.66.4): - - React-Core/RCTTextHeaders (= 0.66.4) - - React-RCTVibration (0.66.4): - - FBReactNativeSpec (= 0.66.4) + - RCTTypeSafety (= 0.67.1) + - React-Core/RCTSettingsHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-RCTText (0.67.1): + - React-Core/RCTTextHeaders (= 0.67.1) + - React-RCTVibration (0.67.1): + - FBReactNativeSpec (= 0.67.1) - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/RCTVibrationHeaders (= 0.66.4) - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (= 0.66.4) - - React-runtimeexecutor (0.66.4): - - React-jsi (= 0.66.4) - - ReactCommon/turbomodule/core (0.66.4): + - React-Core/RCTVibrationHeaders (= 0.67.1) + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (= 0.67.1) + - React-runtimeexecutor (0.67.1): + - React-jsi (= 0.67.1) + - ReactCommon/turbomodule/core (0.67.1): - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-callinvoker (= 0.66.4) - - React-Core (= 0.66.4) - - React-cxxreact (= 0.66.4) - - React-jsi (= 0.66.4) - - React-logger (= 0.66.4) - - React-perflogger (= 0.66.4) + - React-callinvoker (= 0.67.1) + - React-Core (= 0.67.1) + - React-cxxreact (= 0.67.1) + - React-jsi (= 0.67.1) + - React-logger (= 0.67.1) + - React-perflogger (= 0.67.1) - SocketRocket (0.6.0) - Yoga (1.14.0) - YogaKit (1.18.1): @@ -392,6 +392,7 @@ DEPENDENCIES: - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (~> 0.9.0) - libevent (~> 2.1.12) + - OpenSSL-Universal (= 1.1.1100) - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) @@ -511,8 +512,8 @@ SPEC CHECKSUMS: boost: a7c83b31436843459a1961bfd74b96033dc77234 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 - FBLazyVector: e5569e42a1c79ca00521846c223173a57aca1fe1 - FBReactNativeSpec: fe08c1cd7e2e205718d77ad14b34957cce949b58 + FBLazyVector: cf409c74423d3507bda74bda1dc41e903ec2cd5b + FBReactNativeSpec: ef0ce762fdb37900abb01e008cce5f0ef2cce6b7 Flipper: 221885d6f68362dffe998cbc86877200ec151fe5 Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c @@ -523,40 +524,40 @@ SPEC CHECKSUMS: Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 FlipperKit: abe28013a659fda2d29c559de80a5dfc79e802b9 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 5337263514dd6f09803962437687240c5dc39aa4 + glog: 85ecdd10ee8d8ec362ef519a6a45ff9aa27b2e85 hermes-engine: bf7577d12ac6ccf53ab8b5af3c6ccf0dd8458c5c libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c - RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9 - RCTRequired: 4bf86c70714490bca4bf2696148638284622644b - RCTTypeSafety: c475a7059eb77935fa53d2c17db299893f057d5d - React: f64af14e3f2c50f6f2c91a5fd250e4ff1b3c3459 - React-callinvoker: b74e4ae80287780dcdf0cab262bcb581eeef56e7 - React-Core: 3eb7432bad96ff1d25aebc1defbae013fee2fd0e - React-CoreModules: ad9e1fd5650e16666c57a08328df86fd7e480cb9 - React-cxxreact: 02633ff398cf7e91a2c1e12590d323c4a4b8668a - React-hermes: 7b4c6617b4d4c880d0f44e629651810bf3417440 - React-jsi: 805c41a927d6499fb811772acb971467d9204633 - React-jsiexecutor: 94ce921e1d8ce7023366873ec371f3441383b396 - React-jsinspector: d0374f7509d407d2264168b6d0fad0b54e300b85 - React-logger: 933f80c97c633ee8965d609876848148e3fef438 + RCT-Folly: 803a9cfd78114b2ec0f140cfa6fa2a6bafb2d685 + RCTRequired: e5dc0c44cb366fc93383a2bffbc190fe821e7293 + RCTTypeSafety: 6a4d0cfe070e7fd996e797f439b70878764a1ae0 + React: e194f6b2f0a4f8d24065f3ca0a6abe859694df65 + React-callinvoker: a9e7bd8d87147de3530007a3d74afd4b7dbaf57e + React-Core: 4714b96060ccc19fdfbeec4e30c3b43ec82fb508 + React-CoreModules: fbf9a30fe25385428a57bea57d3d6d27830111da + React-cxxreact: 4c8b1bfa89c6e98b8a05ebf0d9ba8d8e322e390c + React-hermes: 7b536f4246210ffd5c928a8b89d45f12f0bfc230 + React-jsi: 1653dc43b537777e80f8e6c9e36aa803c698e4d3 + React-jsiexecutor: 1af5de75a4c834c05d53a77c1512e5aa6c18412f + React-jsinspector: ab80bcdb02f28cdfc0dbbaea6db1241565d59002 + React-logger: b08f354e4c928ff794ca477347fea0922aaf11c3 react-native-flipper: 9993c1518795f4edc10f918566273f8a821afa6b - React-perflogger: 93075d8931c32cd1fce8a98c15d2d5ccc4d891bd - React-RCTActionSheet: 7d3041e6761b4f3044a37079ddcb156575fb6d89 - React-RCTAnimation: 743e88b55ac62511ae5c2e22803d4f503f2a3a13 - React-RCTBlob: bee3a2f98fa7fc25c957c8643494244f74bea0a0 - React-RCTImage: 19fc9e29b06cc38611c553494f8d3040bf78c24e - React-RCTLinking: dc799503979c8c711126d66328e7ce8f25c2848f - React-RCTNetwork: 417e4e34cf3c19eaa5fd4e9eb20180d662a799ce - React-RCTSettings: 4df89417265af26501a7e0e9192a34d3d9848dff - React-RCTText: f8a21c3499ab322326290fa9b701ae29aa093aa5 - React-RCTVibration: e3ffca672dd3772536cb844274094b0e2c31b187 - React-runtimeexecutor: dec32ee6f2e2a26e13e58152271535fadff5455a - ReactCommon: 57b69f6383eafcbd7da625bfa6003810332313c4 + React-perflogger: 9a6172711d9c4c8c7ac0a426717317c3c6ecf85c + React-RCTActionSheet: ed408b54b08278e6af8a75e08679675041da61ae + React-RCTAnimation: 0163b497a423a9576a776685c6e3fe276f934758 + React-RCTBlob: 40e9a2ba218218cc120d037408e6c1686036a3ad + React-RCTImage: ae48901aecaf2b5a9f7f51cbb60fc36ff120115d + React-RCTLinking: 1e25d97db107eea60657211f7ecc4509587f8d29 + React-RCTNetwork: 775383be87609cf2d7e182a9b967e51686f12b2f + React-RCTSettings: 4581080369f65e5bc388061ff7b9cba9389936c4 + React-RCTText: 48df7f52519cfc6a9eb79a02acb3d33df04370a0 + React-RCTVibration: 19c012d1202df46bafbe49268a346f6b3edadfdd + React-runtimeexecutor: 2c92a8bddd1a3e72c7513d1e74235c2d9c84875c + ReactCommon: 2e816fad39f65f2a94a5999d5be463a6b620dcf6 SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608 - Yoga: e7dc4e71caba6472ff48ad7d234389b91dadc280 + Yoga: 5cbf25add73edb290e1067017690f7ebf56c5468 YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: ad1ac48de1fcaa9297dd8a070b86fe663c275745 +PODFILE CHECKSUM: 6645ff4b03839bdb18d762ee8bd7638e3ac613b6 COCOAPODS: 1.11.2 diff --git a/react-native/ReactNativeFlipperExample/ios/ReactNativeFlipperExample.xcodeproj/project.pbxproj b/react-native/ReactNativeFlipperExample/ios/ReactNativeFlipperExample.xcodeproj/project.pbxproj index 526984224..b2d31dc03 100644 --- a/react-native/ReactNativeFlipperExample/ios/ReactNativeFlipperExample.xcodeproj/project.pbxproj +++ b/react-native/ReactNativeFlipperExample/ios/ReactNativeFlipperExample.xcodeproj/project.pbxproj @@ -836,7 +836,7 @@ COPY_PHASE_STRIP = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -852,11 +852,11 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = YES; @@ -897,7 +897,7 @@ COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -906,11 +906,11 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; diff --git a/react-native/ReactNativeFlipperExample/package.json b/react-native/ReactNativeFlipperExample/package.json index 940c16268..6b3b4c995 100644 --- a/react-native/ReactNativeFlipperExample/package.json +++ b/react-native/ReactNativeFlipperExample/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "react": "^17.0.2", - "react-native": "^0.66.4", - "react-native-flipper": "^0.129.0" + "react-native": "^0.67.1", + "react-native-flipper": "^0.131.0" }, "devDependencies": { "@babel/core": "^7.16.12", diff --git a/react-native/ReactNativeFlipperExample/yarn.lock b/react-native/ReactNativeFlipperExample/yarn.lock index 83055aaea..09f13128f 100644 --- a/react-native/ReactNativeFlipperExample/yarn.lock +++ b/react-native/ReactNativeFlipperExample/yarn.lock @@ -1173,10 +1173,10 @@ resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e" integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ== -"@react-native/normalize-color@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-1.0.0.tgz#c52a99d4fe01049102d47dc45d40cbde4f720ab6" - integrity sha512-xUNRvNmCl3UGCPbbHvfyFMnpvLPoOjDCcp5bT9m2k+TF/ZBklEQwhPZlkrxRx2NhgFh1X3a5uL7mJ7ZR+8G7Qg== +"@react-native/normalize-color@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567" + integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw== "@react-native/polyfills@2.0.0": version "2.0.0" @@ -4872,7 +4872,7 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -react-devtools-core@^4.13.0: +react-devtools-core@4.19.1: version "4.19.1" resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.19.1.tgz#bc37c2ef2f48f28c6af4c7292be9dca1b63deace" integrity sha512-2wJiGffPWK0KggBjVwnTaAk+Z3MSxKInHmdzPTrBh1mAarexsa93Kw+WMX88+XjN+TtYgAiLe9xeTqcO5FfJTw== @@ -4890,31 +4890,31 @@ react-is@^16.8.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-native-codegen@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.7.tgz#86651c5c5fec67a8077ef7f4e36f7ed459043e14" - integrity sha512-dwNgR8zJ3ALr480QnAmpTiqvFo+rDtq6V5oCggKhYFlRjzOmVSFn3YD41u8ltvKS5G2nQ8gCs2vReFFnRGLYng== +react-native-codegen@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.8.tgz#b7796a54074139d956fff2862cf1285db43c891b" + integrity sha512-k/944+0XD+8l7zDaiKfYabyEKmAmyZgS1mj+4LcSRPyHnrjgCHKrh/Y6jM6kucQ6xU1+1uyMmF/dSkikxK8i+Q== dependencies: flow-parser "^0.121.0" jscodeshift "^0.11.0" nullthrows "^1.1.1" -react-native-flipper@^0.129.0: - version "0.129.0" - resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.129.0.tgz#b2f3626291a61de4eb662adedd290e0d0ab33fd9" - integrity sha512-m4chCu4Hx9FqH21ZtOD3FKusVf4BkmSiOfr1RLyuXnoRp+wVerx/QL/3sG8T5Pe1l5/xTyzuO16a/niQpU7krw== +react-native-flipper@^0.131.0: + version "0.131.1" + resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.131.1.tgz#b1a43e40a442187fa78c5ed6d478471ff4a2686c" + integrity sha512-X65VbZgwVRVYAc3OBdHi0h8dJR/Mgxdg8WoQLGgaYyhHcaqsF06GjOzBJLwNjN3TK5Gih228IFqLqI9Rwl2dEA== -react-native@^0.66.4: - version "0.66.4" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.66.4.tgz#bf89a5fb18bd23046d889fb4de4ea2822a4d7805" - integrity sha512-9vx5dlSfQlKbbDtr8+xMon6qsmSu7jvjdXWZpEKh3XVKpUidbbODv7048gwVKX8YAel1egeR7hN8vzSeI6ssTw== +react-native@^0.67.1: + version "0.67.1" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.67.1.tgz#a9cc13f1a691e9bb23f146f001e11fc0157af51c" + integrity sha512-doKN9qhtjilF+6p8603OVzqGKL4fq8EDAH5u00KPmZbL5ampHDQX9y8/uwlUvJggvHwZXlnvhW63u8Y1LA8rxw== dependencies: "@jest/create-cache-key-function" "^27.0.1" "@react-native-community/cli" "^6.0.0" "@react-native-community/cli-platform-android" "^6.0.0" "@react-native-community/cli-platform-ios" "^6.0.0" "@react-native/assets" "1.0.0" - "@react-native/normalize-color" "1.0.0" + "@react-native/normalize-color" "2.0.0" "@react-native/polyfills" "2.0.0" abort-controller "^3.0.0" anser "^1.4.9" @@ -4923,7 +4923,6 @@ react-native@^0.66.4: hermes-engine "~0.9.0" invariant "^2.2.4" jsc-android "^250230.2.1" - metro-babel-register "0.66.2" metro-react-native-babel-transformer "0.66.2" metro-runtime "0.66.2" metro-source-map "0.66.2" @@ -4931,8 +4930,8 @@ react-native@^0.66.4: pretty-format "^26.5.2" promise "^8.0.3" prop-types "^15.7.2" - react-devtools-core "^4.13.0" - react-native-codegen "^0.0.7" + react-devtools-core "4.19.1" + react-native-codegen "^0.0.8" react-refresh "^0.4.0" regenerator-runtime "^0.13.2" scheduler "^0.20.2"