Skip to content

Commit 9698946

Browse files
committed
chore: Upgrade to React Native 0.71.2
This commit implements the changes detailed in the official upgrade guide: https://react-native-community.github.io/upgrade-helper/?from=0.68.6&to=0.71.2
1 parent b49757c commit 9698946

38 files changed

+1313
-2679
lines changed

Diff for: .buckconfig

-6
This file was deleted.

Diff for: .gitignore

+11-9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ DerivedData
2323
*.hmap
2424
*.ipa
2525
*.xcuserstate
26+
ios/.xcode.env.local
2627

2728
# Android/IntelliJ
2829
#
@@ -32,6 +33,9 @@ build/
3233
local.properties
3334
*.iml
3435
*.hprof
36+
.cxx/
37+
*.keystore
38+
!debug.keystore
3539

3640
# node.js
3741
#
@@ -40,22 +44,17 @@ node_modules**/
4044
npm-debug.log
4145
yarn-error.log
4246

43-
# BUCK
44-
buck-out/
45-
\.buckd/
46-
*.keystore
47-
!debug.keystore
48-
4947
# fastlane
5048
#
5149
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
5250
# screenshots whenever they are needed.
5351
# For more information about the recommended setup visit:
5452
# https://docs.fastlane.tools/best-practices/source-control/
5553

56-
*/fastlane/report.xml
57-
*/fastlane/Preview.html
58-
*/fastlane/screenshots
54+
**/fastlane/report.xml
55+
**/fastlane/Preview.html
56+
**/fastlane/screenshots
57+
**/fastlane/test_output
5958

6059
# Bundle artifact
6160
*.jsbundle
@@ -64,5 +63,8 @@ buck-out/
6463
/ios/Pods/
6564
/vendor/bundle/
6665

66+
# Temporary files created by Metro to check the health of the file watcher
67+
.metro-health-check*
68+
6769
# VS Code
6870
.vscode/.react/

Diff for: .node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

Diff for: .ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.6

Diff for: Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.4'
4+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

Diff for: android/app/_BUCK

-55
This file was deleted.

0 commit comments

Comments
 (0)