Tim Yung and Facebook GitHub Bot
f53f6137e6
RN: Migrate View to Component Syntax ( #52018 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52018
Migrates `View` to use Flow's [Component Syntax](https://flow.org/en/docs/react/component-syntax/ ).
Component Syntax offers more concise syntax for expressing component definitions and eliminates the need for `View` to be cast as a component type. Component types improve type safety by more accurately modeling `ref` as props and enabling the use of modern type utilities such as `React.PropsOf<Component>` and `React.RefOf<Component>`.
This represents the first introduction of Component Syntax in the open source React Native repository, which is lowered to standard JavaScript through the use of [`hermes-parser`](https://www.npmjs.com/package/hermes-parser ) and the following supporting packages:
- [`babel-plugin-syntax-hermes-parser`](https://www.npmjs.com/package/babel-plugin-syntax-hermes-parser )
- [`hermes-eslint`](https://www.npmjs.com/package/hermes-eslint )
- [`prettier-plugin-hermes-parser`](https://www.npmjs.com/package/prettier-plugin-hermes-parser )
By default, [`react-native/babel-preset`](https://www.npmjs.com/package/react-native/babel-preset ) already provides configuration for `babel-plugin-syntax-hermes-parser`.
Although this is the first usage of Component Syntax, there are already Flow syntax features used in React Native that have required `hermes-parser` (e.g. [type casting expressions](https://flow.org/en/docs/types/casting/ ), [type guards](https://flow.org/en/docs/types/type-guards/ ), [const expressions](https://flow.org/en/docs/types/const-expression/ )). As such, we do not anticipate this to introduce new build configuration problems for developers.
Changelog:
[Internal]
Reviewed By: javache, NickGerleman
Differential Revision: D76632879
fbshipit-source-id: e0a83dfc2e2014933000083de1825a311faad707
2025-06-16 06:52:07 -07:00
Pieter Vanderwerff and Facebook GitHub Bot
c79e55f79d
Deploy 0.273.1 to xplat ( #51968 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51968
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D76477358
fbshipit-source-id: a26827e7e3dcd265549d681bc9e3991c0ef2ad52
2025-06-11 20:05:55 -07:00
Tim Yung and Facebook GitHub Bot
f0f71ea914
RN: Move {packages => private}/helloworld ( #51934 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51934
Moves `packages/helloworld` to `private/helloworld`.
Changelog:
[Internal]
Reviewed By: huntie
Differential Revision: D76356557
fbshipit-source-id: 92b20d75a8f2badb3c685d4918fe692623d9c04d
2025-06-11 17:39:26 -07:00
Tim Yung and Facebook GitHub Bot
683054c512
RN: Move {packages => private}/react-native-bots ( #51932 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51932
Moves `packages/react-native-bots` to `private/react-native-bots`.
Changelog:
[Internal]
Reviewed By: huntie
Differential Revision: D76354266
fbshipit-source-id: 6ca714c8b0c881b073d84a2f033f78d366ed3f24
2025-06-10 16:37:49 -07:00
Sam Zhou and Facebook GitHub Bot
1e967ca983
Deploy 0.272.2 to xplat ( #51717 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51717
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D75715829
fbshipit-source-id: 8074481b11bfd28817b1caf315c8009cf6ae3807
2025-05-31 06:19:34 -07:00
Tim Yung and Facebook GitHub Bot
1fd9508ecc
RN: Refactor Jest Default Mocks ( #51669 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51669
Refactors the default mocks initialized in `packages/react-native/jest/setup.js` so that each mock is defined in its own file.
This provides several benefits, including:
- The ability to use `import` statements without worrying about eager initialization of dependencies before `globals` is setup.
- The ability to verify mocks export the same types as the actual module, using a new Flow-typed `mock` helper function.
- The ergonomic of implementing mocks with more complex logic, without having to split them out into a separate module (e.g. `mockModal`, `mockScrollView`).
As part of this migration, I also fixed any minor discrepancies to match the actual type definition. For more involved discrepancies (e.g. missing methods), I added type suppressions for now to minimize breaking changes.
Changelog:
[General][Changed] - Improved default mocking for Jest unit tests.
Reviewed By: javache
Differential Revision: D75575421
fbshipit-source-id: 98d60e10b753f1505ffdccf5f12f5d3ef306ebb5
2025-05-29 07:52:38 -07:00
Sam Zhou and Facebook GitHub Bot
5dbe32ee14
Deploy 0.272.1 to xplat ( #51584 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51584
Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D75356543
fbshipit-source-id: 29234de4f1b6ee2b8857b24a5de566a4afd31030
2025-05-25 08:36:30 -07:00
Alex Taylor (alta) and Facebook GitHub Bot
535444bca4
Deploy 0.272.0 to xplat ( #51536 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51536
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D75228208
fbshipit-source-id: ad6666deedd976b02e8e0e475831df27b3a63984
2025-05-22 13:22:01 -07:00
Alex Hunt and Facebook GitHub Bot
44e36e6d9f
Consolidate location for Flow libdefs ( #51539 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51539
Follow up to D70322032. Relocates some of our newly added Flow library definitions into the package level `flow/` directory, to help disambiguate their use.
**Types directories after changes**
`packages/react-native/`
- `flow/` — Longstanding location for Flow package/global library definitions. Not imported by source code.
- `src/types/` — Contains public typedefs useful to 3P consumers (TypeScript) (today, just `globals.d.ts` as one module). Not imported by source code.
- `src/private/types/` — Source type modules **in Flow**, that **are imported** by other files in `src/private/`.
Changelog: [Internal]
Reviewed By: christophpurrer
Differential Revision: D75060846
fbshipit-source-id: 750a31e11b8f65579ce0831273df4d3b86335bdc
2025-05-22 10:34:04 -07:00
Sam Zhou and Facebook GitHub Bot
249a24ac75
Deploy 0.271.0 to xplat ( #51376 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51376
Changelog: [Internal]
Reviewed By: jbrown215
Differential Revision: D74836348
fbshipit-source-id: 33c354c4e2e59baf4815bc6c58fc3ca0066763df
2025-05-15 15:10:02 -07:00
Pieter Vanderwerff and Facebook GitHub Bot
e30ba139b6
Deploy 0.270.0 to xplat ( #51278 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51278
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D74622474
fbshipit-source-id: 6735c16ed9677050dc476e30671448d52c5ed6dd
2025-05-12 19:39:07 -07:00
Alex Taylor (alta) and Facebook GitHub Bot
78e45e5828
Deploy 0.269.1 to xplat ( #50993 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50993
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D73853679
fbshipit-source-id: 4860c205f764a0be14080015cab1759bb59f442b
2025-04-29 10:24:21 -07:00
Alex Hunt and Facebook GitHub Bot
0968707ef7
Create src/fb_internal/ directory, initially migrate VirtualView ( #50965 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50965
While D72228547 has recently disallowed all `./src/*` subpath imports from React Native (functionally, `./src/private/*`), we have a number of APIs that are imported from Meta product code legitimately — e.g. as part of validating under-development React Native features internally in real Meta apps.
This diff defines a new, exported `./src/fb_internal/*` subpath via `package.json#exports`, which will allow us to expose select entry points for this purpose.
Changelog: [Internal]
Reviewed By: rubennorte
Differential Revision: D73770609
fbshipit-source-id: 397019669e565b95a86302ef30f80b65a17dcc0d
2025-04-29 07:52:24 -07:00
Sam Zhou and Facebook GitHub Bot
3ab7c26e20
Deploy 0.268.0 to xplat ( #50769 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50769
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D73120518
fbshipit-source-id: 34017d8c5be1200e669d97012be3d329c815e607
2025-04-16 12:54:38 -07:00
Panos Vekris and Facebook GitHub Bot
ef12ecfa92
Deploy 0.267.0 to xplat ( #50674 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50674
Changelog: [Internal]
Reviewed By: mvitousek
Differential Revision: D72888246
fbshipit-source-id: 88aa6dad3a968858a22aaa43a2118aa4a0ec5f82
2025-04-11 23:22:56 -07:00
Sam Zhou and Facebook GitHub Bot
398ac1f716
Deploy 0.266.1 to xplat ( #50387 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50387
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D72133412
fbshipit-source-id: f7719284db67537a2c652ea56d9f9050210da7d4
2025-03-30 11:01:43 -07:00
Alex Taylor (alta) and Facebook GitHub Bot
798c3dd842
Deploy 0.266.0 to xplat ( #50373 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50373
Changelog: [Internal]
Reviewed By: jbrown215, SamChou19815, panagosg7
Differential Revision: D72061660
fbshipit-source-id: a6862fe0e1f62992b76145006b3f8bc3ad788258
2025-03-28 13:07:06 -07:00
Sam Zhou and Facebook GitHub Bot
796cc43ec4
Deploy 0.265.3 to xplat ( #50083 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50083
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D71354083
fbshipit-source-id: 33fe2c11ad8cba88d3d206a15976510991d3663e
2025-03-17 19:58:21 -07:00
Sam Zhou and Facebook GitHub Bot
bcd6b5fbd9
Deploy 0.265.2 to xplat ( #50041 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50041
Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D71200832
fbshipit-source-id: a2f267c5b2beabe527f958bfc4557bafc04d27de
2025-03-14 14:57:39 -07:00
Pieter Vanderwerff and Facebook GitHub Bot
934c4465ae
Deploy 0.265.0 to fbsource ( #50025 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50025
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D71158296
fbshipit-source-id: db3e5678c97536517cdb0375843f2c882d5213f9
2025-03-13 17:18:45 -07:00
Tim Yung and Facebook GitHub Bot
1bb7446993
RN: Set react.runtime=automatic in Flow Config ( #50001 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50001
Updates `react-native/.flowconfig` with the following option:
```
react.runtime=automatic
```
This adjusts Flow to model the current behavior of React and JSX, relaxing the requirement that JSX elements have `React` within scope.
Changelog:
[General][Changed] - Changed Flow for the React Native monorepo, so that `React` no longer has to be in scope when using JSX.
Reviewed By: javache
Differential Revision: D71096283
fbshipit-source-id: 65762ac39206c682b7be5d3f512b2b83f7eb1b49
2025-03-13 04:09:43 -07:00
Sam Zhou and Facebook GitHub Bot
7c5995df4a
Deploy 0.263.0 to xplat ( #49825 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49825
Changelog: [Internal]
Reviewed By: pieterv
Differential Revision: D70595199
fbshipit-source-id: a3be1b74cca99f0ff79aca4dd51059b3b09facb2
2025-03-04 21:35:46 -08:00
Rubén Norte and Facebook GitHub Bot
e808011b26
Move environment types (globals) from flow-typed/environment to src/types ( #49724 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49724
Changelog: [internal]
This moves the type definitions for the globals defined by React Native from the repository root to the `react-native` package, in the same directory as the existing TypeScript definitions. This will make it easier for end users to configure the globals from RN using the right source of truth.
Reviewed By: huntie
Differential Revision: D70322032
fbshipit-source-id: 932df75ded0c254f2acb32e865cbbb9474c94159
2025-02-28 05:58:45 -08:00
Alex Taylor (alta) and Facebook GitHub Bot
daed8e2f8c
Deploy 0.262.0 to xplat ( #49708 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49708
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D70277654
fbshipit-source-id: e215e392aa6e06181f2df03ce8b9b873807f3b86
2025-02-27 08:55:49 -08:00
Sam Zhou and Facebook GitHub Bot
b53e86b4bd
Deploy 0.261.2 to xplat
...
Summary: Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D69816782
fbshipit-source-id: c4d1e7bff3333fe8075816542d0b316408363f86
2025-02-18 18:11:49 -08:00
Sam Zhou and Facebook GitHub Bot
b45851aecf
Deploy 0.261.1 to xplat
...
Summary: Changelog: [Internal]
Reviewed By: alexmckenley
Differential Revision: D69622197
fbshipit-source-id: 3ddf9f8cb015825ea76be39a28525b75bbc8c03f
2025-02-13 18:13:15 -08:00
Panos Vekris and Facebook GitHub Bot
413730ecb3
Back out "Deploy 0.261.0 to xplat"
...
Summary:
Original commit changeset: cf5953b1afc2
Original Phabricator Diff: D69562137
Reviewed By: SamChou19815
Differential Revision: D69570236
fbshipit-source-id: 7cfa9cf51aa3662d4339e020f8ae5065c8f5c358
2025-02-12 19:14:21 -08:00
Sam Zhou and Facebook GitHub Bot
9a401c8103
Deploy 0.261.0 to xplat
...
Summary: Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D69562137
fbshipit-source-id: cf5953b1afc242bf2571ad7c4362ef9485d8e846
2025-02-12 18:12:54 -08:00
Alex Taylor (alta) and Facebook GitHub Bot
32fcd2733e
Deploy 0.260.0 to xplat ( #49319 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49319
Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D69438322
fbshipit-source-id: 1906cfc76125e1bb7244b2a40536c3268a914ecf
2025-02-11 09:34:17 -08:00
Sam Zhou and Facebook GitHub Bot
7278ff01d7
Deploy 0.259.1 to xplat ( #48751 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48751
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D68294434
fbshipit-source-id: 8827369836906464566069cf22b584a4c672ec92
2025-01-16 16:29:30 -08:00
Pieter Vanderwerff and Facebook GitHub Bot
c65117eba9
Deploy 0.259.0 to fbsource ( #48744 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48744
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D68279682
fbshipit-source-id: 2a7e19b75863d5fd31037e04fa334efda28de79e
2025-01-16 11:43:13 -08:00
Sam Zhou and Facebook GitHub Bot
abf0384434
Deploy 0.258.1 to xplat
...
Summary: Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D67927891
fbshipit-source-id: ac9c7bd87e9f1e2fecdbd7141cd0e5c5a62c7ce6
2025-01-08 08:47:41 -08:00
Sam Zhou and Facebook GitHub Bot
b030418649
Deploy 0.258.0 to xplat ( #48482 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48482
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D67810693
fbshipit-source-id: 82e858d4d5ef3c9896ea3bd58a4f4364dce5bdd0
2025-01-03 15:37:43 -08:00
Sam Zhou and Facebook GitHub Bot
66342d3ccd
Deploy 0.257.1 to xplat
...
Summary: Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D67548045
fbshipit-source-id: 0c983b327b54580dddf483b6250ff1261df8ce75
2024-12-20 15:58:17 -08:00
Sam Zhou and Facebook GitHub Bot
b8f3f919cc
Deploy 0.257.0 to xplat ( #48331 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48331
Changelog: [Internal]
Reviewed By: pieterv
Differential Revision: D67423622
fbshipit-source-id: 09ca17bedf15174e210e943b989537c67f197659
2024-12-18 17:39:30 -08:00
Panos Vekris and Facebook GitHub Bot
e5a526ff44
remove as_const option (on by default) in fbsource ( #48227 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48227
This option is on by default in Flow v0.256
Reviewed By: gkz
Differential Revision: D67117062
fbshipit-source-id: 1595afe48178529ad43b33a215d84ff225cf9fa9
2024-12-12 02:01:35 -08:00
Alex Taylor (alta) and Facebook GitHub Bot
8aeba2a3b8
Deploy 0.256.0 to xplat ( #48190 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48190
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D66979174
fbshipit-source-id: d94e8c42edd225fe367aac75e55d2c1d054acc07
2024-12-10 01:47:05 -08:00
Sam Zhou and Facebook GitHub Bot
d86412dcc6
prepare for primitive literal changes ( #47943 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47943
Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D66461724
fbshipit-source-id: b526ed1617667b70337472f4dad4e19f152a266b
2024-11-26 00:07:32 -08:00
Sam Zhou and Facebook GitHub Bot
cb7cd89a10
Deploy 0.255.0 to xplat ( #47941 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47941
Changelog: [Internal]
Reviewed By: pieterv
Differential Revision: D66477998
fbshipit-source-id: f4d1dbe506d6c42751fade897637031f0a43aa29
2024-11-25 16:06:09 -08:00
Panos Vekris and Facebook GitHub Bot
d4d1eb9bb1
Deploy 0.254.2 to xplat ( #47912 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47912
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D66379853
fbshipit-source-id: 3a7677c5a71ef74e509ed43be87e455aed0cbaa7
2024-11-22 21:48:38 -08:00
Sam Zhou and Facebook GitHub Bot
12550f05c5
Deploy 0.254.1 to xplat ( #47887 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47887
Changelog: [Internal]
Reviewed By: alexmckenley
Differential Revision: D66315470
fbshipit-source-id: 16b8fca3412fc2fcea3be8dfd0c760d97c56d734
2024-11-21 13:13:10 -08:00
Pieter Vanderwerff and Facebook GitHub Bot
ae09827b15
Deploy 0.254.0 to xplat ( #47810 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47810
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D66278779
fbshipit-source-id: 01dec1dc844607afa8f650c5acdebc6d5d5739d2
2024-11-21 08:26:07 -08:00
Jack Pope and Facebook GitHub Bot
55a4d105e7
Enable ban_spread_key_props in xplat/js ( #47636 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47636
We're cleaning up key spreads across WWW/Fbsource. Flow's `ban_spread_key_props` option allows us to fix existing spreads and prevent new ones from being added in code covered by Flow.
Here we fix spreads within xplat/js.
Also based on a unit test keeping config in sync, I've added the option to metro and RN OSS as well.
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D64427942
fbshipit-source-id: db8f4aa428ce1994304b5d814b9d241d26e8d522
2024-11-15 14:18:51 -08:00
Sam Zhou and Facebook GitHub Bot
bea6229a5d
Deploy 0.253.0 to xplat ( #47622 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47622
Changelog: [Internal]
Reviewed By: alexmckenley
Differential Revision: D65967280
fbshipit-source-id: 81ad422cc1d88682ab8ed5c0bf4d07df14295b62
2024-11-14 14:05:17 -08:00
Alex Taylor (alta) and Facebook GitHub Bot
84bfeec9b8
Deploy 0.252.0 to xplat + www ( #47523 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47523
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D65666666
fbshipit-source-id: 19f75611805777115febfca79d0945d31b7ea522
2024-11-08 12:27:49 -08:00
Mateo Guzmán and Facebook GitHub Bot
8bb3033d73
fix(flow): excluding packages/rn-tester/Pods/ from flow checks ( #47474 )
...
Summary:
When running the commands to check the flow types locally, there is quite some noise from files under `packages/rn-tester/Pods` that should not be checked as they are not from the source code itself.
<img width="839" alt="Screenshot 2024-11-07 at 00 50 55" src="https://github.com/user-attachments/assets/7ad3d96d-0f4a-4772-9e37-34d7e593b4cf ">
## Changelog:
[INTERNAL] [FIXED] - Excluding `packages/rn-tester/Pods/` from flow checks
Pull Request resolved: https://github.com/facebook/react-native/pull/47474
Test Plan:
```bash
yarn flow
```
Reviewed By: cortinico
Differential Revision: D65594400
Pulled By: cipolleschi
fbshipit-source-id: d5e8828f41fc87c9a95293c250f24673ebbc6cd4
2024-11-07 04:37:19 -08:00
Panos Vekris and Facebook GitHub Bot
e3f8c63698
Deploy 0.251.1 to xplat ( #47317 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47317
Changelog: [Internal]
Reviewed By: SamChou19815
Differential Revision: D65233278
fbshipit-source-id: 35057c00f9377b6492f43bb03e5f92572799a50a
2024-10-30 14:37:10 -07:00
Alex Taylor (alta) and Facebook GitHub Bot
e797135247
Deploy 0.251.0 to www + fbsource ( #47295 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47295
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D65176860
fbshipit-source-id: 2254fdac49a664f3a92ae0834c76d721132fddc4
2024-10-29 19:31:15 -07:00
Sam Zhou and Facebook GitHub Bot
797d013308
Deploy 0.250.0 to xplat ( #47108 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47108
Changelog: [Internal]
Reviewed By: panagosg7
Differential Revision: D64577261
fbshipit-source-id: 265e1f6755fde3836bb7aa15116e2bb380cee091
2024-10-17 19:54:04 -07:00
Sam Zhou and Facebook GitHub Bot
10d8c0df29
Deploy 0.249.0 to xplat ( #47077 )
...
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47077
Changelog: [Internal]
Reviewed By: gkz
Differential Revision: D64512638
fbshipit-source-id: 6c61e13ef0b02f755a150a4d31312375ca487076
2024-10-17 00:09:24 -07:00