Skip to content

chore(deps): update React Native to v0.80.0 #3567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jan 30, 2024

Bumps scripts/update-rn.sh from v0.77.1 to v0.80.0.

Auto-generated by a dependency updater.

Changelog

v0.80.0

Breaking

  • APIs: Subpath imports to the internal react-native/virtualized-lists package are not allowed. (be8393c41b by iwoplaza)
  • APIs: The react-native package now defines package.json "exports". (319ba0afd2 by huntie)
  • C++: Dispatch folly::dynamic events with r-value instead of l-value (12e5df844b by rozele)
  • C++: Introduce beforeload callback arg into ReactInstance::loadScript (061174c150 by RSNara)
  • deps: Updated eslint-config-react-native to depend on eslint-plugin-react-hooks v5.2.0 from v4.6.0. This includes a breaking change in which ESLint will no longer recognize component names that start with 1 or more underscores followed by a capital letter. (https://github-redirect.dependabot.com/facebook/react/pull/25162) (4de592756b by yungsters)
  • NewAppScreen: The NewAppScreen component is redesigned and moved to the react-native/new-app-screen package (3cf0102007 by huntie)
Android specific
  • APIs: Deleting ChoreographerCompat, Use Choreographer.FrameCallback instead (f8b2956437 by mdvacca)
  • APIs: Deleting deprecated StandardCharsets (40b38d0a44 by mdvacca)
  • APIs:: Make DeviceInfoModule internal (f02607badb by mateoguzmana)
  • APIs:: Make ModuleDataCleaner internal (6fa1864d52 by mateoguzmana)
  • DevX: Removed loadSplitBundleFromServer from DevSupportManager interface (86cd31eb6b by javache)
  • Kotlin: Convert ColorPropConverter to Kotlin (57768bfbcd by fabriziocucci)
  • Kotlin: Convert DevSupportManagerBase to Kotlin. If you're subclassing this class, you will have to adjust some of the parameters as types have changed during the migration. (9da485b54c by cortinico)
  • Kotlin: Convert NetworkModule to Kotlin, mark methods as final (8726e26348 by Abbondanzo)
  • Kotlin: Convert ReactEditText to Kotlin. If you're subclassing this type you'll need to adjust your signatures. (cac27d15be by cortinico)
  • Kotlin: Convert ReactInstanceDevHelper to Kotlin. Some users implementing this class in Kotlin could have breakages. As this is a devtools/frameworks API we're not marking this as breaking. (09492075e8 by cortinico)
  • Kotlin: Convert ReactTextInputManager to Kotlin (ab47834eb1 by cortinico)
iOS specific

Added

  • Accessibility: Add accessibilityOrder to iOS and Android (8cf4d5b531 by jorge-cab)
  • Codegen: Codegen utility functions and types are now exported from the root package (c7aa3f3fe7 by j-piasecki)
  • Events: Add UIManager::add/RemoveEventListener (b0f2083d9d by zeyap)
  • Events: EventEmitter addListener and removeListener APIs (ff4537c15e by rozele)
  • Image: Support headers [crossOrigin and referralPolicy] in Image without src and srcSet and only remote source.uri (49ea9d80b8 by anupriya13)
  • JS: Add compact option to react-native/babel-preset to allow disabling whitespace removal (86911003dc by jnields)
  • JS: Added no-deep-imports rule to eslint-plugin-react-native. (87809d9326 by coado)
  • Networking: Implementation for URLSearchParams (af1f1e4fe5 by Ritesh Shukla)
  • Networking: URL accessors for unimplemented Methods (3dac90006f by riteshshukla04)
  • NewArch: Add warning when the app runs with the legacy architecture (706b6e878d by cipolleschi)
  • Pressable: Expose onPressMove as base prop for Pressable (6df938c72e by Regina Tuk)
  • ScrollView: Add showsVerticalScrollIndicator in ScrollViewProps.cpp SetProp (bc90c839aa by anupriya13)
  • StyleSheet: Added slash of alpha support using rgb() (7441127040 by zhongwuzw)
  • StyleSheet: Adds JS changes for radial gradient (1b45dc8033 by intergalacticspacehighway)
  • StyleSheet: CSS Added hwb(H W B / A) notation (692b05e77d by zhongwuzw)
  • Testing: Added a custom Jest resolver to opt out from handling "exports" in tests (ee9bd851ac by j-piasecki)
  • Text: Support minimumFontScale in paragraphAttributes (f53d066d26 by anupriya13)
  • TurboModules: Create TurboModuleWithJSIBindings interface (1acd45950b by zeyap)
  • TypeScript: Added type definitions for Colors object in LaunchScreen module to enhance code readability and type safety. (c2864c160d by qnnp-me)
  • TypeScript: Configure the "react-native-strict-api" opt in for our next-gen TypeScript API (6ea24f7bb9 by huntie)
  • runtime: Allow setting SurfaceStartedCallback on UIManager (c5e9ef53ae by zeyap)
  • runtime: Move rncxx scheduler to oss (744a0f8385 by zeyap)
Android specific
  • Accessibility: Expose Android's screenReaderFocusable prop (4ce093154d by jorge-cab)
  • Animated: Create UIManagerNativeAnimatedDelegate to potentially drive per frame NativeAnimated update (8d6098a645 by zeyap)
  • APIs: Collections DSL functions for Kotlin(buildReadableMap, buildReadableArray) (78dbbaafdd by l2hyunwoo)
  • C++: Allow invoking synchronouslyUpdateViewOnUIThread from c++ via UIManager (4912958812 by zeyap)
  • infra: Generate keep.xml to prevent resource shrinking (864833fca9 by jakex7)
  • NewArch: Add a legacyWarningsEnabled property to enable Legacy Warnings on NewArch (7ca2811750 by cortinico)
  • NewArch: Warn Legacy Arch users if they use a Component with a ShadowNode with YogaMeasureFunction.measure() function. That Component will stop working on NewArch. (9345c88a61 by cortinico)
  • StyleSheet: Adds android changes for radial gradient (a2409941c2 by intergalacticspacehighway)
  • TextInput: Add new prop for filtering drag and drop targeting to text inputs (d10dd7130c by Abbondanzo)
iOS specific

Changed

  • Animated: Animated components' ref will now only reattach when receiving new props if the new props contain different AnimatedValue or AnimatedEvent instances. (Previously, Animated components' ref would always reattach when receiving new props.) (eeab47e61a by yungsters)
  • Animated: When an Animated component is unmounted, any completion callbacks will now be called in a microtask instead of during the commit phase. (da1bf8d1d1 by yungsters)
  • APIs: InteractionManager is deprecated and will be removed in a future release. Its behavior has been changed to be the same as setImmediate, and callers should migrate away from it. (a8a4ab10d0 by yungsters)
  • Codegen: Changed react-native-codegen to support types under CodegenTypes namespace (5349b7c7b5 by j-piasecki)
  • deps: Bump minimum Metro from 0.81.0 to ^0.81.3 || ^0.82.0 (6606a1da84 by robhogan)
  • deps: Bump React to 19.1 (0e11e6a28b by cipolleschi)
  • deps: Replace hsr_core dependency for react profiling with hz_tracing dependency (0f55ef7754 by metaadrianstone)
  • deps: Update debugger-frontend from bc635fa...343405b (647af1c4ca by huntie)
  • deps: Update Metro to ^0.82.0 (0ad192003e by robhogan)
  • Flow: Changed Flow for the React Native monorepo, so that React no longer has to be in scope when using JSX. (1bb7446993 by yungsters)
  • Hermes: Configured Hermes Parser for Metro to target React 19, resulting in Component Syntax no longer producing forwardRef calls. (f2518d4374 by yungsters)
  • Hermes: Configured Hermes Parser for ReactNative to target React 19, resulting in Component Syntax no longer producing forwardRef calls. (68cad5d2d3 by yungsters)
  • JS: eslint-config-react-native now respects rules disabled by eslint-config-prettier. (6346689c3d by yungsters)
  • JS: Replaced let with const where applicable for better code standards and micro-optimization. (38fefb2771 by sanjaiyan-dev)
  • TypeScript: Re-expose src/* subpaths when not using the Strict TypeScript API (1a46b203b8 by huntie)
  • TypeScript: Replace deprecated React.ElementRef usages to React.ComponentRef (12147e3bee by mateoguzmana)
Android specific
iOS specific
  • CocoaPods: Enable DEFINES_MODULE in React-jsc.podspec (473e42bbc3 by krozniata)
  • Image: Update RCTImageLoader.mm to cast loadHandler to RCTImageLoaderLoggable before calling shouldEnablePerfLogging (2562440385 by Aaron Coplan)
  • ScrollView: Overwrite betterHitTest in RCTScrollViewComponentView instead of changing layout metrics of the container view (850760ab61 by j-piasecki)
  • Text: Replace a workaround for measuring multiline text with maximumNumberOfLines on iOS with a proper solution (77cdaa8733 by j-piasecki)

Deprecated

  • Events: Deprecate *EventData types on Image, Switch, TextInput components. These can be substituted for *Event, e.g. NativeSyntheticEvent<ImageLoadEventData> becomes ImageLoadEvent. (701859b397 by huntie)
Android specific
  • APIs: Correctly deprecate ReactContextBaseJavaModule.getCurrentActivity() method (1408c69fd8 by cortinico)
  • APIs: Deprecate UIManagerType.DEFAULT, replaced by UIManagerType.LEGACY (a8668319ad by mdvacca)
iOS specific
  • Image: Deprecate loadImageForURL in favor of new signature which uses completionHandlerWithMetadata (43c9a609de by Aaron Coplan)
  • NewArch: Deprecate the RCT_NEW_ARCH_ENABLED and the RCTSetNewArchEnabled (6dd721b258 by cipolleschi)

Removed

Android specific
iOS specific

Fixed

  • Alert: Add missing type variation {login: string, password: string} to AlertType type definition to properly support login-password prompt callbacks (c6a075bcc7 by assynu)
  • C++: Add explicit folly/dynamic.h include where it is actually used (0b1d0e84ee by mzlee)
  • Codegen: Do not generate Apple specific files for Android (e83ece0d17 by cipolleschi)
  • Codegen: Fixed codegen breaking when a subset of modulesConformingToProtocol fields was specified or when the value was string (e4ef685dd7 by j-piasecki)
  • CompatCheck: Allow union changes when the new element is in the middle of the union (69ccbc3943 by elicwhite)
  • DevSupport: Made DevServerHelper and its method open so that they can be overridden. (2a0c1e6a9e by chrfalch)
  • Kotlin: Made function removeView open in Kotlin class (9d11dcd3b0 by chrfalch)
  • NewAppScreen: Fix Networking URL in New app screen (89e6c72fd4 by riteshshukla04)
  • PullToRefresh: Fixed crash in RCTPullToRefreshViewComponentView#updateProps (fab7fa88e3 by javache)
  • Runtime: Align timer IDs and timer function argument error handling with web standards. (480a4642e5 by kitten)
  • StyleSheet: Outline now takes into account outline-offset to calculate its border-radius, same as web. (b47bfcef5f by jorge-cab)
  • StyleSheet: Wrong borderBottomEndRadius on RTL (68d6ada448 by riteshshukla04)
  • Switch: Fixed switches correctly reverting to controlled state (aa8c072870 by javache)
  • Text: Fix New Arch handling of inline views when text truncated (99f962627f by NickGerleman)
  • Text: Fixed text not updating correctly after changing font scale in settings (c008604e0a by j-piasecki)
  • TurboModules: Throw ParsingException when ReactModule doesn't conform to TurboModule invariants (c5132f485f by GijsWeterings)
  • TypeScript: Fix TS docs for contentInsetAdjustmentBehavior (24ba7dfe6f by steinalex)
  • TypeScript: Fix generated types in react-native/virtualized-lists being used without opt-in (c9f2055097 by j-piasecki)
  • TypeScript: Fixed the generated type definitions for Animated.FlatList and Animated.SectionList to correctly infer item types. (9be5ac1010 by j-piasecki)
  • TypeScript: Reference global.d.ts using path so they can be resolved by TSC (6399caef63 by krystofwoldrich)
  • VirtualizeSectionList: Fix VirtualizeSectionList generic arguments (44b0f5560b) by coado
  • VirtualizedList: Skip cloning Fragments in ListEmptyComponent to avoid onLayout warning (2b0189b964 by mateoguzmana)
Android specific

⚠️ Changelog content truncated by 10975 characters because it was over the limit (60000) and wouldn't fit into PR description.

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch from eaa6b6d to 99fee31 Compare January 30, 2024 03:03
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Jan 30, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch from 99fee31 to 0190f84 Compare January 30, 2024 18:22
Copy link
Contributor Author

github-actions bot commented Jan 30, 2024

Android (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 555.38 ms 607.71 ms 52.34 ms
Size 17.73 MiB 20.06 MiB 2.33 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
27ef4ee 317.40 ms 321.70 ms 4.30 ms
6e8584e 447.10 ms 474.71 ms 27.61 ms
148f924 492.65 ms 500.28 ms 7.63 ms
34aba08 328.10 ms 342.84 ms 14.74 ms
70e6261 482.65 ms 495.70 ms 13.05 ms
575f9da 415.26 ms 422.98 ms 7.72 ms
1c65324 426.37 ms 460.36 ms 33.99 ms
15c80ab+dirty 336.27 ms 350.58 ms 14.31 ms
1d86dd6 405.14 ms 411.06 ms 5.92 ms
31fcca2 391.22 ms 414.78 ms 23.56 ms

App size

Revision Plain With Sentry Diff
27ef4ee 17.73 MiB 19.82 MiB 2.08 MiB
6e8584e 17.73 MiB 19.86 MiB 2.12 MiB
148f924 17.73 MiB 19.94 MiB 2.21 MiB
34aba08 17.73 MiB 19.80 MiB 2.07 MiB
70e6261 17.73 MiB 19.94 MiB 2.21 MiB
575f9da 17.73 MiB 19.83 MiB 2.10 MiB
1c65324 17.73 MiB 19.95 MiB 2.21 MiB
15c80ab+dirty 17.73 MiB 20.04 MiB 2.31 MiB
1d86dd6 17.73 MiB 19.86 MiB 2.12 MiB
31fcca2 17.73 MiB 19.90 MiB 2.17 MiB

Previous results on branch: deps/scripts/update-rn.sh

Startup times

Revision Plain With Sentry Diff
c66fb41 413.08 ms 440.66 ms 27.58 ms
909a67e 472.34 ms 494.90 ms 22.56 ms
f01ecfc 431.29 ms 463.18 ms 31.89 ms
236cc9c 461.47 ms 479.20 ms 17.73 ms

App size

Revision Plain With Sentry Diff
c66fb41 17.73 MiB 19.95 MiB 2.21 MiB
909a67e 17.73 MiB 20.04 MiB 2.31 MiB
f01ecfc 17.73 MiB 19.93 MiB 2.20 MiB
236cc9c 17.73 MiB 19.93 MiB 2.20 MiB

Copy link
Contributor Author

github-actions bot commented Jan 30, 2024

Android (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 364.29 ms 383.71 ms 19.42 ms
Size 7.15 MiB 8.32 MiB 1.17 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
d7401ac+dirty 373.98 ms 394.08 ms 20.10 ms
70caa60+dirty 308.83 ms 393.06 ms 84.23 ms
e5c9b8b+dirty 335.40 ms 360.06 ms 24.67 ms
b1e8712+dirty 322.55 ms 331.84 ms 9.29 ms
2534337+dirty 597.14 ms 665.04 ms 67.90 ms
1c65324+dirty 381.10 ms 427.26 ms 46.16 ms
e73f4ed+dirty 262.98 ms 311.02 ms 48.04 ms
9c48b2c+dirty 270.82 ms 321.12 ms 50.30 ms
9433f35+dirty 265.50 ms 336.08 ms 70.58 ms
76d1baf+dirty 339.02 ms 408.65 ms 69.63 ms

App size

Revision Plain With Sentry Diff
d7401ac+dirty 7.15 MiB 8.04 MiB 910.85 KiB
70caa60+dirty 7.15 MiB 8.03 MiB 901.79 KiB
e5c9b8b+dirty 7.15 MiB 8.10 MiB 980.41 KiB
b1e8712+dirty 7.15 MiB 8.04 MiB 912.27 KiB
2534337+dirty 7.15 MiB 8.11 MiB 988.68 KiB
1c65324+dirty 7.15 MiB 8.22 MiB 1.07 MiB
e73f4ed+dirty 7.15 MiB 8.09 MiB 965.94 KiB
9c48b2c+dirty 7.15 MiB 8.07 MiB 947.16 KiB
9433f35+dirty 7.15 MiB 8.08 MiB 959.34 KiB
76d1baf+dirty 7.15 MiB 8.09 MiB 964.41 KiB

Previous results on branch: deps/scripts/update-rn.sh

Startup times

Revision Plain With Sentry Diff
236cc9c+dirty 330.73 ms 355.79 ms 25.06 ms
909a67e+dirty 366.48 ms 394.66 ms 28.18 ms
c66fb41+dirty 355.42 ms 403.84 ms 48.42 ms
f01ecfc+dirty 367.79 ms 403.25 ms 35.46 ms

App size

Revision Plain With Sentry Diff
236cc9c+dirty 7.15 MiB 8.21 MiB 1.06 MiB
909a67e+dirty 7.15 MiB 8.31 MiB 1.17 MiB
c66fb41+dirty 7.15 MiB 8.22 MiB 1.07 MiB
f01ecfc+dirty 7.15 MiB 8.21 MiB 1.06 MiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch from 0190f84 to 6d16c76 Compare January 31, 2024 09:27
Copy link
Contributor Author

github-actions bot commented Jan 31, 2024

iOS (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1242.51 ms 1239.31 ms -3.20 ms
Size 2.36 MiB 3.07 MiB 725.33 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
86d6d2c+dirty 1267.55 ms 1286.21 ms 18.66 ms
e2b64fe+dirty 1232.22 ms 1255.20 ms 22.98 ms
9433f35+dirty 1246.94 ms 1271.45 ms 24.52 ms
4a6664f+dirty 1209.49 ms 1208.63 ms -0.86 ms
80b2ce3+dirty 1265.92 ms 1268.60 ms 2.69 ms
dadc233+dirty 1223.20 ms 1236.88 ms 13.68 ms
f06c879+dirty 1252.64 ms 1259.66 ms 7.02 ms
5a22220+dirty 1209.49 ms 1220.94 ms 11.45 ms
3853f43+dirty 1221.82 ms 1242.64 ms 20.82 ms
8900e1a+dirty 1210.27 ms 1218.66 ms 8.39 ms

App size

Revision Plain With Sentry Diff
86d6d2c+dirty 2.36 MiB 2.82 MiB 462.82 KiB
e2b64fe+dirty 2.36 MiB 2.85 MiB 495.80 KiB
9433f35+dirty 2.36 MiB 2.85 MiB 499.80 KiB
4a6664f+dirty 2.36 MiB 3.04 MiB 696.39 KiB
80b2ce3+dirty 2.36 MiB 2.84 MiB 486.98 KiB
dadc233+dirty 2.36 MiB 2.84 MiB 486.85 KiB
f06c879+dirty 2.36 MiB 2.88 MiB 530.42 KiB
5a22220+dirty 2.36 MiB 2.92 MiB 570.21 KiB
3853f43+dirty 2.36 MiB 2.85 MiB 499.81 KiB
8900e1a+dirty 2.36 MiB 2.83 MiB 479.25 KiB

Previous results on branch: deps/scripts/update-rn.sh

Startup times

Revision Plain With Sentry Diff
909a67e+dirty 1231.94 ms 1230.14 ms -1.80 ms
f01ecfc+dirty 1228.78 ms 1230.45 ms 1.67 ms
236cc9c+dirty 1317.96 ms 1322.51 ms 4.55 ms
c66fb41+dirty 1215.94 ms 1216.11 ms 0.17 ms

App size

Revision Plain With Sentry Diff
909a67e+dirty 2.36 MiB 3.06 MiB 713.26 KiB
f01ecfc+dirty 2.36 MiB 2.92 MiB 570.30 KiB
236cc9c+dirty 2.36 MiB 2.92 MiB 570.03 KiB
c66fb41+dirty 2.36 MiB 3.04 MiB 698.62 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 4 times, most recently from 48040db to c38742c Compare February 1, 2024 15:27
Copy link
Contributor Author

github-actions bot commented Feb 1, 2024

iOS (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1230.74 ms 1227.88 ms -2.87 ms
Size 2.92 MiB 3.63 MiB 731.21 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
86d6d2c+dirty 1291.62 ms 1296.80 ms 5.18 ms
e2b64fe+dirty 1285.78 ms 1297.56 ms 11.78 ms
9433f35+dirty 1232.24 ms 1232.74 ms 0.50 ms
4a6664f+dirty 1218.77 ms 1221.07 ms 2.30 ms
80b2ce3+dirty 1245.12 ms 1262.04 ms 16.92 ms
dadc233+dirty 1266.52 ms 1282.55 ms 16.03 ms
f06c879+dirty 1285.14 ms 1285.86 ms 0.72 ms
5a22220+dirty 1246.18 ms 1249.61 ms 3.43 ms
3853f43+dirty 1271.74 ms 1278.04 ms 6.30 ms
8900e1a+dirty 1268.36 ms 1273.04 ms 4.68 ms

App size

Revision Plain With Sentry Diff
86d6d2c+dirty 2.92 MiB 3.37 MiB 464.31 KiB
e2b64fe+dirty 2.92 MiB 3.41 MiB 499.97 KiB
9433f35+dirty 2.92 MiB 3.41 MiB 503.55 KiB
4a6664f+dirty 2.92 MiB 3.60 MiB 702.09 KiB
80b2ce3+dirty 2.92 MiB 3.40 MiB 492.75 KiB
dadc233+dirty 2.92 MiB 3.40 MiB 492.53 KiB
f06c879+dirty 2.92 MiB 3.44 MiB 533.24 KiB
5a22220+dirty 2.92 MiB 3.48 MiB 575.81 KiB
3853f43+dirty 2.92 MiB 3.41 MiB 503.54 KiB
8900e1a+dirty 2.92 MiB 3.39 MiB 485.96 KiB

Previous results on branch: deps/scripts/update-rn.sh

Startup times

Revision Plain With Sentry Diff
909a67e+dirty 1216.10 ms 1217.41 ms 1.30 ms
f01ecfc+dirty 1224.04 ms 1228.31 ms 4.27 ms
236cc9c+dirty 1236.10 ms 1238.60 ms 2.50 ms
c66fb41+dirty 1228.08 ms 1235.42 ms 7.34 ms

App size

Revision Plain With Sentry Diff
909a67e+dirty 2.92 MiB 3.62 MiB 715.33 KiB
f01ecfc+dirty 2.92 MiB 3.48 MiB 575.84 KiB
236cc9c+dirty 2.92 MiB 3.48 MiB 575.61 KiB
c66fb41+dirty 2.92 MiB 3.61 MiB 705.55 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 3 times, most recently from 4ea1ad8 to a56ff71 Compare February 5, 2024 17:43
@github-actions github-actions bot changed the title chore(deps): update React Native to v0.73.3 chore(deps): update React Native to v0.73.4 Feb 6, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 4 times, most recently from 9c8f6d7 to 5b65668 Compare February 12, 2024 17:23
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 8 times, most recently from 3f74f83 to f28f469 Compare February 15, 2024 15:20
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 4 times, most recently from de35642 to 2412666 Compare May 28, 2025 07:56
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 9 times, most recently from 71a9b22 to a239cfc Compare June 4, 2025 13:24
@github-actions github-actions bot changed the title chore(deps): update React Native to v0.79.2 chore(deps): update React Native to v0.79.3 Jun 5, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 6 times, most recently from 7572004 to 3fbebd7 Compare June 10, 2025 14:02
@github-actions github-actions bot changed the title chore(deps): update React Native to v0.79.3 chore(deps): update React Native to v0.80.0 Jun 13, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch 6 times, most recently from 0940500 to 9162ece Compare June 18, 2025 15:52
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch from 9162ece to 923af73 Compare June 20, 2025 13:24
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-rn.sh branch from 923af73 to e836d05 Compare June 23, 2025 13:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants