Commit Graph

12270 Commits

Author SHA1 Message Date
David Vacca 5203354d70 NIT lint warns fixed in BlobProvider (#39614)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39614

NIT lint warns fixed in BlobProvider

changelog: [internal] internal

Reviewed By: christophpurrer

Differential Revision: D49483635

fbshipit-source-id: 51f6f0d7841d2552f30ed64d0bb4447bd0b0ec54
2023-09-26 18:58:56 -07:00
David Vacca e1d2a8482e Remove mTurboModuleManagerJSIModule from CatalystInstanceImpl (#39612)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39612

I'm removing mTurboModuleManagerJSIModule from CatalystInstanceImpl, as this is a duplicated variable.

changelog: [internal] internal

Reviewed By: christophpurrer

Differential Revision: D49483637

fbshipit-source-id: 01f9e48e9a53eeaeed2dec9af07eb000bd164676
2023-09-26 18:58:56 -07:00
David Vacca 5f215cdde2 Rename onCatalystInstanceDestroy -> invalidate (#39611)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39611

I'm renaming onCatalystInstanceDestroy -> invalidate, this is necessary to converge TurboModuleRegistry -> turboModuleManager in the next diffs of the stack

changelog: [intenral] internal

Reviewed By: arushikesarwani94

Differential Revision: D49469208

fbshipit-source-id: 877c5af6ad0fc378ec9cbd952f33db0ea08f761c
2023-09-26 18:58:56 -07:00
generatedunixname89002005232357 36057dac59 Revert D49509633: Multisect successfully blamed "D49509633: [react-native][PR] fix: Text cut off issues when adjusting text size and font weight in system settings" for test or build failures
Summary:
This diff is reverting D49509633
D49509633: [react-native][PR] fix: Text cut off issues when adjusting text size and font weight in system settings by ryancat has been identified to be causing the following test or build failures:

Tests affected:
- [xplat/endtoend/jest-e2e/apps/facebook_xplat/ReactNativeTTRCTester/__tests__/ReactNativeTTRCTester-errorReportedManually-android-e2e.js](https://www.internalfb.com/intern/test/281475019301157/)

Here's the Multisect link:
https://www.internalfb.com/multisect/3131615
Here are the tasks that are relevant to this breakage:

We're generating a revert to back out the changes in this diff, please note the backout may land if someone accepts it.

If you believe this diff has been generated in error you may Commandeer and Abandon it.

Reviewed By: NickGerleman

Differential Revision: D49645585

fbshipit-source-id: 414531e067cffa109d0663d6af185dcaf8fb9c4e
2023-09-26 18:34:51 -07:00
Intl Scheduler 41e5a5e692 translation auto-update for i18n/fb4a.config.json on master
Summary:
Chronos Job Instance ID: 1125907941650214
Sandcastle Job Instance ID: 18014399568859493
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D49661278

fbshipit-source-id: 8db6f313902418c9e190c9b6110c957c14864b60
2023-09-26 15:10:30 -07:00
Ramanpreet Nara aa1ad5496c Enable TurboModule interop in Bridgeless Mode (#39687)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39687

Bridgeless mode is releasing in 0.73.

Bridgeless mode isn't stable inside RNTester (in 0.73) without the TurboModule interop layer: T164853040.

**Changes:** Enable the TurboModule interop layer in RNTester (Bridgeless Mode).

**Urgency:** This will unblock the 0.73.

Changelog: [General][Added] - Enable TurboModule interop in Bridgeless mode

Reviewed By: fkgozali, dmytrorykun, luluwu2032

Differential Revision: D49653919

fbshipit-source-id: a4a09a99544c2ef8713484dbeab5cb04f29256cc
2023-09-26 14:51:02 -07:00
David Vacca aa1dffbb41 Fix lit warn (#39685)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39685

Fix lit warn

changelog: [internal] internal

Reviewed By: javache

Differential Revision: D49645243

fbshipit-source-id: 68516bfa5de414dddfba2411889d7485d20804ed
2023-09-26 13:40:57 -07:00
Rui Ying 7c7e9e6571 Allow non-ascii header values & add utf-8 filename fallback (#35060)
Summary:
Fix https://github.com/facebook/react-native/issues/31537: [Android] React Native strips non-ASCII characters from HTTP headers

## Changelog

<!-- Help reviewers and the release process by writing your own changelog entry. For an example, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests
-->

[Android] [Changed] - Allow non-ascii header values on Android and add utf-8 filename fallback in FormData

Pull Request resolved: https://github.com/facebook/react-native/pull/35060

Test Plan:
1. Clone the `react-native` repo.
2. Build the rn-tester app.
3. Prepare tests
   1. Add `android:usesCleartextTraffic="true"` to AndroidManifest.xml
   2. Use the following code as a server:
       ```javascript
		const http = require('http');

		const requestListener = function (req, res) {
		    // raw header value
		    console.log(req.headers['content-disposition']);
		    // nodejs assumes the header value is ISO-8859-1 encoded
		    console.log(Buffer.from(req.headers['content-disposition'], 'latin1').toString('utf-8'));
		    // decode encoded header value if it's sent as UTF-8
		    console.log(decodeURI(req.headers['content-disposition']));
		    res.writeHead(200);
		    res.end();
		};

		const server = http.createServer(requestListener);
		server.listen(3000);
       ```
  	3. Run `adb reverse tcp:3000 tcp:3000` to connect the 3000 port on the emulator if necessary.
4. Edit `RNTesterAppShared.js` to include test code:
    ```javascript
	  useEffect(() => {
	    fetch('http://localhost:3000/', {
	      headers: {
	        'Content-Type': 'multipart/form-data; charset=utf-8',
	        'Content-Disposition': `attachment; filename*=utf-8''${encodeURI(
	          'filename测试abc.jpg',
	        )}`,
	      },
	    }).then(res => {
	      console.log(res.ok);
	    });
	    fetch('http://localhost:3000/', {
	      headers: {
	        'Content-Type': 'multipart/form-data; charset=utf-8',
	        'Content-Disposition': `attachment; filename="filename测试abc.jpg"`,
	      },
	    }).then(res => {
	      console.log(res.ok);
	    });
	  }, []);
    ```
5. Both requests should succeed; without the fix, the second request received by the server will not have the utf-8 characters "测试" in the header value.

Reviewed By: NickGerleman

Differential Revision: D40639985

Pulled By: cortinico

fbshipit-source-id: 005f2481976046a92a26239ad704780ac58d4a44
2023-09-26 12:39:18 -07:00
Lulu Wu 8b2f324a9b Enable Template with Bridgeless (#39661)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39661

Changelog:
[Android][Changed] - Enable Template with Bridgeless

Reviewed By: cortinico

Differential Revision: D49464580

fbshipit-source-id: 26dd8e2a0b9a66421d58f147eed4d2fd28817dc7
2023-09-26 10:32:45 -07:00
Ingrid Wang 6b3d25a075 Update deprecated stringByAddingPercentEscapesUsingEncoding to NSCharacterSet (#39638)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39638

# Changelog:
[Internal] - Removing usage of stringByAddingPercentEscapesUsingEncoding

Per deprecation message:

> 'stringByAddingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0 - Use -stringByAddingPercentEncodingWithAllowedCharacters: instead, which always uses the recommended UTF-8 encoding, and which encodes for a specific URL component or subcomponent since each URL component or subcomponent has different rules for what characters are valid.

Reviewed By: cipolleschi

Differential Revision: D49610243

fbshipit-source-id: 7c40ce9f6b643851c8aae8149acde2c435c06a76
2023-09-26 10:26:06 -07:00
Katy Chang 91d3a9539d Change assertion to avoid crash in ReactScrollView.java (#39593)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39593

Looking into a crash leads by assertion error in this line, I talked to NickGerleman and we think there might be some case when ContentView is not rendered, so it would have 0 child. Changing the assertion to allow 0 child.

Changelog: [Internal]

Reviewed By: NickGerleman

Differential Revision: D49508540

fbshipit-source-id: 43c50814ead24332c1b24ff2dea50d564519034b
2023-09-26 10:13:03 -07:00
Dmitry Rykun 4fbe05577b Enable native view configs in bridgeless mode in OSS (#39476)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39476

This diff enables native view config interop layer in bridgeless mode by default for OSS.
It also removes redundant `enableNativeViewConfigsInBridgelessMode` JS feature flag.
Changelog: [General][Added] - Native view config interop layer enabled in bridgeless mode.

Reviewed By: luluwu2032

Differential Revision: D49318325

fbshipit-source-id: ea2e38b2ea10637b578d98e38d97eed923498fb3
2023-09-26 09:59:16 -07:00
Dmitry Rykun 3eb8e4d482 Make hermesc build script to run in a clean build environment (#39662)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39662

Hermesc is built with the build script that is executed by Xcode as a "Run script" build phase. For every build Xcode configures environment based on the build target. The Hermesc build script runs in that environment.

**The problem**
If we build for iPhone of iPhone Simulator, then the environment is configured for these platforms, but Hermesc must always be built for macosx.

**The old solution**
Previously we experimentally determined what envvars should be changed for Hermesc build to succeed. But it is not robust, because this may change with new Xcode releases.

**The new solution**
We clear the entire environment and only define `SDKROOT`. This is equivalent to running Cmake outside of Xcode.

Changelog: [Internal]

Reviewed By: cipolleschi

Differential Revision: D49639599

fbshipit-source-id: f8d8fccb0e61605b1fef9927dc4a3fdf79e4f212
2023-09-26 09:58:00 -07:00
Arushi Kesarwani 35a66302d0 Reduce visibility of functions in ReactHostImpl (#39640)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39640

changelog: [internal] internal

Reducing visibility from public to package only for `ReactHostImpl.getDefaultHardwareBackBtnHandler()` since it's only used within package

Reviewed By: mdvacca

Differential Revision: D49612859

fbshipit-source-id: 3c40888da732f33dc046d9363b08119e707f4ea4
2023-09-26 07:30:41 -07:00
Cookiezby 8c779cd630 fix: typo at utils.rb (#39572)
Summary:
Fix typo in `packages/react/native/scripts/cocoapods/utils.rb`

## Changelog:

<!-- Help reviewers and the release process by writing your own changelog entry.

Pick one each for the category and type tags:

For more details, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests
-->

[iOS] [Fixed] - Fix the typo for the method `is_using_xcode15_or_greater`

Pull Request resolved: https://github.com/facebook/react-native/pull/39572

Reviewed By: dmytrorykun

Differential Revision: D49594275

Pulled By: cortinico

fbshipit-source-id: 8637fc9b10cfad3742b038ed9402585fe2af56b7
2023-09-26 06:57:52 -07:00
Nicola Corti 63ca55bdcc Unblock build-from-source on nightlies (#39634)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39634

Running build from source as suggested here:
https://reactnative.dev/contributing/how-to-build-from-source
is currently broken for nightly versions (and for 0.73).

This fixes it by:
- Fixing the import of the Gradle Version Catalog
- Actually adding the Gradle version catalog to the NPM package
- Fixing how the build Codegen CLI task is invoked for build-from-source
- Updating the search directories for codegenDir/reactNativeDir from build-from-source

Changelog:
[Internal] [Fixed] - Unblock build-from-source on nightlies

Reviewed By: cipolleschi

Differential Revision: D49562595

fbshipit-source-id: 9594b7d947569d41c461a7e8287d3ae68fb87b98
2023-09-26 06:26:55 -07:00
lizhiqiang05 babbc3e43c fix: Text cut off issues when adjusting text size and font weight in system settings (#39581)
Summary:
Fix Text cut off issues when adjusting text size and font weight in system settings.

This pr fixed the problem that can be reproduced with the [snack](https://snack.expo.dev/fl5DSrLBJ) on Xiaomi devices with MIUI13 and MIUI14. The problem is shown as the image below: the number "999" is cut off and only "99" is rendered.
<img src="https://github.com/facebook/react-native/assets/23273745/64269ced-4060-4ab5-8233-8199e4f2acbd" width="20%" height="20%" alt="text-cutoff-when-scaling-miui14" />

The problem is produced with setting font scaling in system settings like the image below shows.

<img src="https://github.com/facebook/react-native/assets/23273745/c31d1bf2-d038-4536-b1a4-509050f2aa7c" width="20%" height="20%" alt="settings" />

This text cut off case can be avoided by setting [`allowFontScaling`](https://reactnative.cn/docs/text#allowfontscaling) to false. But this pr can make it no matter what value `allowFontScaling` is set.

The root cause of this case, according to MIUI developers, is that Misans typeface, as a variable font which will adjust the weight of different font axes with different font size, gets different widths when Text is measured and drawn for a bug in the framework of MIUI rom. They will fix this bug in next version while this pr fixed it in old versions.

## Changelog:

[ANDROID][FIXED]-Fix Text cut off issues when adjusting text size and font weight in system settings.

<!-- Help reviewers and the release process by writing your own changelog entry.

Pick one each for the category and type tags:

[ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message

For more details, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests

Pull Request resolved: https://github.com/facebook/react-native/pull/39581

Test Plan:
The effect after fixed is shown in the image below.

<img src="https://github.com/facebook/react-native/assets/23273745/1f93f47f-5cdf-4ee1-934a-6cb3b04309ea" width="20%" height="20%" alt="fixed" />

Reviewed By: NickGerleman

Differential Revision: D49509633

Pulled By: ryancat

fbshipit-source-id: fd93f14bdbced8026a45dc9e0299465962433de5
2023-09-25 20:07:06 -07:00
Alan Hughes 6118aff69d fix: over reporting trait changes (#39439)
Summary:
Closes https://github.com/facebook/react-native/issues/35972
Closes https://github.com/facebook/react-native/issues/36713

This PR addresses a couple of issues with `useColorScheme` and the `Appearance` API.

- https://github.com/facebook/react-native/issues/38214 introduced a regression. Using to `RCTExecuteOnMainQueue` was a mistake as we need this to happen synchronously to return the result. Doing it async causes the `traitCollection` to remain uninitialized.
- The `useColorScheme` hook is updating when the app is in the background on iOS and the OS is taking the snapshots for the app switcher. This causes a flash when returning to the app as the correct color is set again. Here, we can check for the app state in `traitCollectionDidChange` and not send these events when in the background.
- Removed a line that was left over after some OS version checks were removed when support for iOS 12 was dropped.

## Changelog:

[IOS] [FIXED] - Don't send the `RCTUserInterfaceStyleDidChangeNotification` when the app is in the background.

Pull Request resolved: https://github.com/facebook/react-native/pull/39439

Test Plan: Tested on `rn-tester`, logged the changes whenever `useColorScheme` updates. It no longer happens when the app is in the background. The returned interface style on the initial render is always correct now.

Reviewed By: NickGerleman

Differential Revision: D49454281

Pulled By: javache

fbshipit-source-id: 87e24158a49c50608c79e73fb484442f5aad36a6
2023-09-25 20:00:41 -07:00
David Vacca 27b631e5b0 reactHostInterface -> reactHost (#39636)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39636

rename ReactApplication.reactHostInterface -> ReactApplication.reactHost

changelog: [internal] internal

Reviewed By: cortinico, arushikesarwani94

Differential Revision: D49610674

fbshipit-source-id: 24ddf410cf6aae176f673dc574216a3a12f25767
2023-09-25 18:09:13 -07:00
Saad Najmi c62d174989 Remove undefined references to OCMock from RNTesters' pbxproj (#39616)
Summary:
In https://github.com/facebook/react-native/pull/36239 , I removed the copy of libOCMock we had locally in favor of a Pod. The references were left in RNTester's pbxproj and undefined. Let's just remove them.

## Changelog:

[INTERNAL] [FIXED] - Remove undefined references to OCMock from RNTesters' pbxproj

Pull Request resolved: https://github.com/facebook/react-native/pull/39616

Test Plan: CI should pass

Reviewed By: NickGerleman

Differential Revision: D49612102

Pulled By: ryancat

fbshipit-source-id: 85a5a67612dc58d5dba906edc1c56091d22b0978
2023-09-25 16:28:11 -07:00
Lulu Wu a07c31bb4b Add DefaultReactHost for Template (#39585)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39585

So that to enable Bridgeless in Template android we only need to override the ReactHostInterface variable in Template's application, see D49464580

Changelog:
[Android][Changed] - Add DefaultReactHost

Reviewed By: cortinico

Differential Revision: D49463901

fbshipit-source-id: ff6ef1bef8626996a3658597d1519eec310c77c3
2023-09-25 14:54:04 -07:00
Dmitry Rykun 3f1ee478bb Native view configs in bridgeless mode: constantsToExport support (#39519)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39519

If the `constantsToExport` method is overridden by RCTViewManager subclass, we'll out those constants in "Constants" property of the view config.
This diff also defines a property on UIManager for every view configs. This add support for `UIManager.RNTMyLegacyNativeView.Constants.PI` syntax in bridgeless mode.
Changelog: [Internal]

Reviewed By: cipolleschi

Differential Revision: D49372561

fbshipit-source-id: e9333c94ad882ee38a5a3729ccc19330d7736657
2023-09-25 14:23:56 -07:00
Dmitry Rykun 2de964cfd2 Set runtime config provider for the Template (#39633)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39633

This diff sets runtime config provider for the template. It sets `native` to `false` to prioritize static view configs over native view configs.
Changelog: [Breaking] - Set runtime config provider for the Template.

Reviewed By: luluwu2032

Differential Revision: D49604628

fbshipit-source-id: 0ea19eb76fc67d0df862b82ec4b9d172ae92d56d
2023-09-25 13:03:57 -07:00
Sunbreak af7bf9371c Fix typo of JSI module Cpp codegen (#39604)
Summary:
Fix code generatetion comment from `GenerateModuleH.js` to `GenerateModuleCpp.js`

## Changelog:

[GENERAL] [FIXED] - Fix typo of JSI module Cpp codegen

Pull Request resolved: https://github.com/facebook/react-native/pull/39604

Test Plan: None

Reviewed By: christophpurrer

Differential Revision: D49558245

Pulled By: cortinico

fbshipit-source-id: 28b6a6f4da0f5f973717f785fe21db86179f1996
2023-09-25 12:30:34 -07:00
Lulu Wu cee5dceac7 Fix instacrash with RNTester (#39631)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39631

Don't display the PopupWindow when current activity is in a bad state, other wise there will be a crash P832378432

Changelog:
[Android][Changed] - Don't display the PopupWindow when current activity is in a bad state

Reviewed By: mdvacca

Differential Revision: D49501328

fbshipit-source-id: 1a51855daa470e8da9399f72ca7211a95388e38f
2023-09-25 10:51:24 -07:00
Lulu Wu 188eceec98 Fix crash "lateinit property initialProps has not been initialized" (#39632)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39632

Found a new [crash](P837035842) caused by converting RNTesterActivity to kotlin in D49506304

Changelog:
[Android][Changed] - fix crash "lateinit property initialProps has not been initialized"

Reviewed By: cortinico

Differential Revision: D49594073

fbshipit-source-id: e6d086f6e9bc64b449e6a3da4bc1903729970e7d
2023-09-25 10:36:04 -07:00
evanbacon 030663bb06 bump react-refresh to latest (#39486)
Summary:
- Companion PR to https://github.com/facebook/metro/pull/1085
- The Fast Refresh changes appear to be required for using static rendering and React DOM. In frameworks like Expo Router which support both native and web, this causes users to not be able to use Fast Refresh on web.

## Changelog:

[GENERAL] [CHANGED] - Upgrade React Refresh package from 0.4.0 to 0.14.0

Pull Request resolved: https://github.com/facebook/react-native/pull/39486

Test Plan:
1. In a React Native project's `package.json`:
```json
 "resolutions": {
    "react-refresh": "~0.14.0"
  },
```
2. Start the server with a clear Metro cache.
3. Changes should update while preserving React state.

Reviewed By: huntie

Differential Revision: D49348078

Pulled By: robhogan

fbshipit-source-id: ac3dcb096c35c6c29c6e6a919cf263559bceaa7c
2023-09-24 07:16:28 -07:00
Rob Hogan 0d23ef5bde Gradle distribution type bin -> all (#39619)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39619

https://github.com/facebook/react-native/pull/39603 unintentionally changed our Gradle distribution type in `gradle.properties` to `bin`. This changes it back to `all` while preserving the upgrade to 8.3.

Generated with
```
./gradlew wrapper --gradle-version=8.3 --distribution-type all
```

Changelog:
[Internal][Changed] Revert Gradle distribution type to ‘all’

Reviewed By: NickGerleman

Differential Revision: D49569492

fbshipit-source-id: fc5b2c8a2c2cea455ed5bd0dbd6743d34b527c9b
2023-09-24 06:09:53 -07:00
Pieter Vanderwerff 29f62a41b4 Deploy 0.217.0 to fbsource (#39610)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39610

Reviewed By: SamChou19815

Differential Revision: D49522399

fbshipit-source-id: 98dc8ce53a4dea2b68909fda5f92251c6cc91717
2023-09-22 17:29:26 -07:00
Bogusz Kaszowski 0f2ecd3254 migrate RNTesterActivity to Kotlin (#39584)
Summary:
PR converts RNTesterActivity to Kotlin as requested in https://github.com/facebook/react-native/issues/38825 .

## Changelog:

[INTERNAL] [CHANGED] - Migrate RNTesterActivity to Kotlin

Pull Request resolved: https://github.com/facebook/react-native/pull/39584

Test Plan:
1. run `yarn android`
2. Check whether RN Tester runs as expected

Reviewed By: cortinico

Differential Revision: D49506304

Pulled By: ryancat

fbshipit-source-id: 7675b43e6ef1d09f9a6e09e5a70526fc59f07bbf
2023-09-22 15:45:30 -07:00
Willa Kong 2fb4547aa0 Revert D49355595: remove uses of folly::hash::fnv32_buf
Differential Revision:
D49355595

Original commit changeset: a75fb91655a7

Original Phabricator Diff: D49355595

fbshipit-source-id: a1a32b869e1539ce931a6b9957e3697e7db72d2a
2023-09-22 11:19:56 -07:00
Willa Kong 0d63a15857 Revert D49358327: introduce fnv1a hashing function
Differential Revision:
D49358327

Original commit changeset: b211da89ca7b

Original Phabricator Diff: D49358327

fbshipit-source-id: b0ae2b9fdddae9616e5ae67f1bbc000ca8b3f52c
2023-09-22 11:19:56 -07:00
Rob Hogan 2613e8d9db Bump Gradle to 8.3 (#39603)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39603

Bump Gradle to latest stable: 8.3.

Changelog:
[Internal] [Changed] - Gradle to 8.3

Reviewed By: christophpurrer

Differential Revision: D49537003

fbshipit-source-id: 75297f9108cd325a6118a2d416401e306cadd1b8
2023-09-22 09:19:05 -07:00
Samuel Susla 353b31c7da introduce fnv1a hashing function (#39515)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39515

changelog: [internal]

Implements FNV hashing algorithm: http://www.isthe.com/chongo/tech/comp/fnv/

Reviewed By: javache

Differential Revision: D49358327

fbshipit-source-id: b211da89ca7b6bea6ed1b0732e639bbc2de210f7
2023-09-22 05:53:13 -07:00
Samuel Susla e5b62b5ecd remove uses of folly::hash::fnv32_buf (#39509)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39509

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49355595

fbshipit-source-id: a75fb91655a7252c4208415940cf9766f750a8ab
2023-09-22 05:53:13 -07:00
Samuel Susla aa03cc0b75 use string_view instead of const char* in PerformanceObserver APIs (#39513)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39513

changelog: [internal]

Using std::hash with const char * is dangerous, as it will not hash the contents but only the pointer itself. We want to adopt std::hash in favour of folly to reduce our dependency on folly. One way to fix the issue with const char * is to use std::string_view.

Reviewed By: rshest, cipolleschi

Differential Revision: D49355536

fbshipit-source-id: fd2a7b4558461e913cdf0ec0e8fe878cae2f6015
2023-09-22 05:53:13 -07:00
Samuel Susla 4221cba12d remove folly::hash from textlayoutmanager module (#39514)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39514

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49350125

fbshipit-source-id: 694533fbc4fb26cce8a1c8b8507d403f28c7840e
2023-09-22 05:53:13 -07:00
Samuel Susla acea828e7a remove folly::hash from mounting module (#39510)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39510

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49350102

fbshipit-source-id: 0abfa7a9cf3d91b9913c5fb8602df08a043f30bf
2023-09-22 05:53:13 -07:00
Samuel Susla d51621cc18 remove use of folly::hash from core module (#39508)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39508

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49350077

fbshipit-source-id: d698e53e389acd5c77aa4100a846d762be96aea4
2023-09-22 05:53:13 -07:00
Samuel Susla 351b1a20d7 remove folly::hash from graphics module (#39507)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39507

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49349976

fbshipit-source-id: 5762b56b853640c21a13167b4ae2b8f966273fce
2023-09-22 05:53:13 -07:00
Samuel Susla 43eb18b1ae remove use of folly::hash from attributedstring module (#39512)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39512

changelog: [internal]

Reviewed By: cipolleschi

Differential Revision: D49349658

fbshipit-source-id: 2b1e3ce2051e995fe5a29a8021c221c69df28ce2
2023-09-22 05:53:13 -07:00
Samuel Susla bf186471d3 introduce hash_combine (#39511)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39511

changelog: [internal]

C++ standard library doesn't offer a way to combine hashes together. This is implementation for uses in React Native code.

Reviewed By: javache

Differential Revision: D49349539

fbshipit-source-id: 1e1f47585969181d5910f5bbc5b6ebfffa12e96b
2023-09-22 05:53:13 -07:00
Samuel Susla d6c9a488b2 missing #pragma once (#39506)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39506

changelog: [internal]

for correctness.

Reviewed By: mdvacca

Differential Revision: D49349252

fbshipit-source-id: 9144c5890c2905b3ebabca4cd53ee1c46f9711f1
2023-09-22 05:53:13 -07:00
Alex Hunt 3ef7de848d Improve remote debugging LogBox message, cleanup unused openURL method (#39582)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39582

Some tidying up around remote JS debugging while testing. See also https://github.com/react-native-community/cli/pull/2083.

## Changelog:
[iOS][Breaking] - Remove `openURL` method from `RCTInspectorDevServerHelper`

Reviewed By: cipolleschi

Differential Revision: D49499068

fbshipit-source-id: 843ef6cf1af658756466854fc1a0b3edd91c1f37
2023-09-22 04:43:11 -07:00
Willa Kong 8c5340fd96 Revert D49413562: Static view configs take precedence over native view configs
Differential Revision:
D49413562

Original commit changeset: d65776cd43ea

Original Phabricator Diff: D49413562

fbshipit-source-id: e0f8670f0725412740142fd2c41e1eaeb9ca4c8a
2023-09-21 19:20:42 -07:00
Saad Najmi 8fa1127c35 updateIphoneOSDeploymentTarget -> updateOSDeploymentTarget (#39570)
Summary:
While merging new commits into React Native macOS, I noticed https://github.com/facebook/react-native/pull/39478/

I would like to also set `MACOS_DEPLOYMENT_TARGET` in our fork, and thought this slight rename would be something I can do upstream

## Changelog:

[Internal] - updateIphoneOSDeploymentTarget -> updateOSDeploymentTarget

Pull Request resolved: https://github.com/facebook/react-native/pull/39570

Test Plan: CI should pass

Reviewed By: NickGerleman

Differential Revision: D49514693

Pulled By: ryancat

fbshipit-source-id: b4dafb1f9736d2977510712652cb8097263c489d
2023-09-21 19:14:34 -07:00
Nick Gerleman 7a8251ec7d Remove FloatOptional related TODOs
Summary:
These were added quite a while ago, and the proprosed change doesn't really make sense to pursue, since FloatOptional is a C++ wrapper around a Float, and the public API is entirely C.

bypass-github-export-checks

Reviewed By: rshest

Differential Revision: D49476343

fbshipit-source-id: f83cc99adda75fc0dba96e063cca92510c3d2ef0
2023-09-21 18:14:46 -07:00
David Vacca f39952ba78 Update UnsupportedOperationException message in TurboReactPackage (#39564)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39564

Update UnsupportedOperationException message in TurboReactPackage

changelog: [internal] internal

Reviewed By: christophpurrer

Differential Revision: D49440132

fbshipit-source-id: 09ee013fcad8d18259f35b57564ea9a382907841
2023-09-21 12:22:02 -07:00
Adam Grzybowski 783150f37b Don't use setState for disabled KeyboardAvoidingView to avoid re-renders (#38074)
Summary:
There are two reasons to apply these changes:
- We don't need to re-render the `KeyboardAvoidingView` if it is disabled. It may be especially useful in combination with [react-navigation](https://reactnavigation.org/) where we could disable `KeyboardAvoidingView` for screens that are not focused
- They fix the problem with the `KeyboardAvoidingView` wrapped inside the [react-freeze](https://github.com/software-mansion/react-freeze) component. Similarly, as above, it is useful when we want to freeze screens that are not visible for the user.

## Changelog:
[GENERAL] [CHANGED] Don't use setState for disabled KeyboardAvoidingView to avoid re-renders

<!-- Help reviewers and the release process by writing your own changelog entry.

Pick one each for the category and type tags:

[ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message

For more details, see:
https://reactnative.dev/contributing/changelogs-in-pull-requests

Pull Request resolved: https://github.com/facebook/react-native/pull/38074

Test Plan: - Check if the KeyboardAvoidingView works as expected.

Reviewed By: sammy-SC

Differential Revision: D49148391

Pulled By: blakef

fbshipit-source-id: c4b7bde696d2249cbf4ad12c77058183b632464d
2023-09-21 11:43:41 -07:00
Alex Hunt 1e44a5f518 Bump CLI to 12.0.0-alpha.15 (#39576)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39576

Changelog: [Internal]

Reviewed By: cipolleschi

Differential Revision: D49496981

fbshipit-source-id: bae2a5fed9d795afcd58e8e24c3ff47c01707d4e
2023-09-21 10:18:51 -07:00