Commit Graph

28054 Commits

Author SHA1 Message Date
Intl Scheduler c8eb235bf7 translation auto-update for i18n/fb4a.config.json on master
Summary:
Chronos Job Instance ID: 1125907903824394
Sandcastle Job Instance ID: 36028797996670317
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46894920

fbshipit-source-id: 7c1c4c1ef83f07b211efa745c78d00a1f6bcae36
2023-06-21 04:45:13 -07:00
Intl Scheduler 859083e963 translation auto-update for i18n/creatorstudio.config.json on master
Summary:
Chronos Job Instance ID: 1125907903824394
Sandcastle Job Instance ID: 36028797996670317
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46894916

fbshipit-source-id: 045309665f3b6b4521c16daf5658a84a88de7d5d
2023-06-21 04:45:13 -07:00
Tommy Nguyen 7a2a3278d0 fix(virtualized-lists): react-test-renderer is not a runtime dependency (#37955)
Summary:
Installing `react-native` 0.72.x causes a warning about `react-test-renderer` because `react-native/virtualized-lists` has declared a peer dependency on it. As far as I know, it is not used for anything but tests.

```
➤ YN0002: │ react-native@npm:0.72.0-rc.6 [292eb] doesn't provide react-test-renderer (p5a2fb), requested by react-native/virtualized-lists
```

Note that while many package managers default to warnings in this case, there are still a number of users out there for which this is an error.

## Changelog:

[GENERAL] [FIXED] - `react-native/virtualized-lists` does not need `react-test-renderer` at runtime

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

Test Plan: n/a

Reviewed By: rshest

Differential Revision: D46871536

Pulled By: NickGerleman

fbshipit-source-id: 1e5e15608ab394bc43cd4e6ac727a74734874642
2023-06-21 04:14:25 -07:00
Ruslan Shestopalyuk b3bb55357a Add dev mode check for direct events following naming convention (#37939)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37939

# Changelog:
[Internal] -

This addresses potential problem with inconsistent naming of direct events on Android, as we've recently found out that there are several such occasions, which can be potentially a source of errors.

Reviewed By: javache

Differential Revision: D46801798

fbshipit-source-id: 01050f53c1efa382021400e803214ae1aafff3fa
2023-06-21 01:16:24 -07:00
Intl Scheduler 15606efa18 translation auto-update for Apps/Wilde/scripts/intl-config.json on master
Summary:
Chronos Job Instance ID: 1125907903682636
Sandcastle Job Instance ID: 13510799859062636
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46885889

fbshipit-source-id: f1688e39299d5fea527ab22f680da14ffa023ba7
2023-06-20 20:37:24 -07:00
Intl Scheduler 784e522c0f translation auto-update for i18n/anna.config.json on master
Summary:
Chronos Job Instance ID: 1125907903618839
Sandcastle Job Instance ID: 27021598739804874
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46883088

fbshipit-source-id: 788b9733459c2c7c1bc72874d4066eac13926f8b
2023-06-20 17:58:21 -07:00
Intl Scheduler 2261e34afb translation auto-update for i18n/instagram.config.json on master
Summary:
Chronos Job Instance ID: 1125907903618839
Sandcastle Job Instance ID: 27021598739804874
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46883096

fbshipit-source-id: 59bcd9ec926450fe5d913cb9728485cadf7f90af
2023-06-20 17:58:21 -07:00
Intl Scheduler 194de0f848 translation auto-update for i18n/fb4a.config.json on master
Summary:
Chronos Job Instance ID: 1125907903618839
Sandcastle Job Instance ID: 27021598739804874
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46883090

fbshipit-source-id: 549808831b33a4d290a584b50bca57cb3a484564
2023-06-20 17:58:21 -07:00
Intl Scheduler 4defe4f3e4 translation auto-update for i18n/oculus-mirage.config.json on master
Summary:
Chronos Job Instance ID: 1125907903618839
Sandcastle Job Instance ID: 27021598739804874
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46883105

fbshipit-source-id: 3084fea1e602f38259ad261f45326b7750b8a618
2023-06-20 17:58:21 -07:00
Liam Jones 8f072b438a Fix for UIApplicationDidReceiveMemoryWarningNotification not being obeyed on iOS (#37973)
Summary:
Prior to 0.69, an RN app receiving the `UIApplicationDidReceiveMemoryWarningNotification` notification resulted in RN performing a GC on the JSC. Since 0.69 this has not worked, this PR fixes the issue.

Before 0.69 this was handled via a hardcoded memory pressure level: https://github.com/facebook/react-native/blob/c5c17985dae402725abb8a3a94ccedc515428711/React/CxxBridge/RCTCxxBridge.mm#L362

(It seems like the levels are an Android concept - see https://developer.android.com/reference/android/content/ComponentCallbacks2#constants_1)

In commit https://github.com/facebook/react-native/commit/0916df99511d6918ea905c2a9df45bccc1fd332a it was changed to run from a constant which could be reconfigured but a mistake (return type of `BOOL` rather than `int`) was resulting in the intended default memory pressure level of 15 (same as the old hardcoded value) being changed to 1 when it was passed on to `handleMemoryPressure`.

## Changelog:

[IOS] [FIXED] - UIApplicationDidReceiveMemoryWarningNotification has not been obeyed on iOS since RN 0.69

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

Test Plan:
Tested manually via the Simulator using Debug -> Simulate Memory Warning and monitoring the console output of the app.

Before fix:

```
WARNING: Logging before InitGoogleLogging() is written to STDERR
W0620 11:21:42.824463 257294336 JSIExecutor.cpp:377] Memory warning (pressure level: 1) received by JS VM, unrecognized pressure level
```

With fix (and also the same output for the latest 0.68 tag in the repo):

```
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0620 11:25:47.479444 79212544 JSIExecutor.cpp:370] Memory warning (pressure level: TRIM_MEMORY_RUNNING_CRITICAL) received by JS VM, running a GC
```

Reviewed By: javache

Differential Revision: D46857205

Pulled By: sammy-SC

fbshipit-source-id: 35121e6c4186fded6ef3ba728d9aafbc936627bb
2023-06-20 17:14:31 -07:00
Pieter De Baets c16e993bb8 Fix SurfaceMountingManager leaking views from stopped surfaces (#37964)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37964

When a Surface is stopped, we don't immediately destroy the SurfaceMountingManager but instead just tear down its internal state. This allows for better error handling (eg did this react tag ever exist, or is this non-existing tag).

The way we construct the set of tags post-deletion is flawed though: `mTagToViewState.keySet()` does not create a new Set with all the tags used, but instead uses the underlying HashMap to iterate over the keys as needed. This effectively keeps all the Views inside that deleted surface alive.

Changelog: [Android][Fixed] Surfaces in the new architecture no longer leak views once stopped

Reviewed By: sammy-SC, rshest

Differential Revision: D46840717

fbshipit-source-id: fad145e4dd21b216d1e64f5dc79900434cff1785
2023-06-20 14:20:29 -07:00
Intl Scheduler 936936ca54 translation auto-update for Apps/Wilde/scripts/intl-config.json on master
Summary:
Chronos Job Instance ID: 1125907903608343
Sandcastle Job Instance ID: 36028797996121595
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46866714

fbshipit-source-id: 776df408f08bce6b2efe29f892b3cc3be14cdfb9
2023-06-20 11:23:02 -07:00
Nicola Corti b85adbf797 Use the correct path to upload apk from android template jobs (#37977)
Summary:
Upload of apk artifacts from template jobs is currently failing (see https://app.circleci.com/pipelines/github/facebook/react-native/25867/workflows/daec954a-2de9-4573-877a-c9d4cfade6b0/jobs/739866/steps) due to wrong path.
This fixes it.

## Changelog:

[INTERNAL] - Use the correct path to upload apk from android template jobs

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

Test Plan: will wait for CI results

Reviewed By: cipolleschi

Differential Revision: D46858996

Pulled By: cortinico

fbshipit-source-id: 6fd81c77e94f5b18dbbbed005e47271ecd06718c
2023-06-20 10:26:47 -07:00
Brandon Austin a108dcb2ce Move verifyProprsNotAlreadyDefined Function To parsers-commons.js (#37963)
Summary:
Move the `verifyProprsNotAlreadyDefined` functions [from Flow](https://github.com/facebook/react-native/blob/d8ced6f8953cd896471983714e722caf50783960/packages/react-native-codegen/src/parsers/flow/components/componentsUtils.js#L220-L229) and [from TypeScript](https://github.com/facebook/react-native/blob/d8ced6f8953cd896471983714e722caf50783960/packages/react-native-codegen/src/parsers/typescript/components/componentsUtils.js#LL486-L495) to the parsers-commons.js file. Use the new function in place of the others.

## Changelog:

[Internal] [Changed] - Moved `verifyProprsNotAlreadyDefined` to `parsers-commons.js`

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

Reviewed By: cipolleschi

Differential Revision: D46841711

Pulled By: rshest

fbshipit-source-id: 4c7e85d8e184126d16c520b0e56b4c291babff06
2023-06-20 09:53:47 -07:00
Intl Scheduler 02771ecbfc translation auto-update for i18n/portal_core_ui.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862865

fbshipit-source-id: 852509a6a55e1b95758e841f95c96610c1af545e
2023-06-20 09:44:23 -07:00
Intl Scheduler 10f4d9ec8e translation auto-update for i18n/adsmanager.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862871

fbshipit-source-id: 2a87e1812d0c4a0cd69b2a40dded144284768be4
2023-06-20 09:44:23 -07:00
Intl Scheduler 1024d4f3d5 translation auto-update for i18n/fb4a.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862860

fbshipit-source-id: 3169de1f0ff8835cd289e8ca93cdcc836bcd7c5e
2023-06-20 09:44:23 -07:00
Intl Scheduler dfa6d60909 translation auto-update for i18n/instagram.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862867

fbshipit-source-id: 6ab6a444d4cd6a5327d84af9882a81fd2aff1ab6
2023-06-20 09:44:23 -07:00
Intl Scheduler cdfc001797 translation auto-update for i18n/portal_calling.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862874

fbshipit-source-id: 18aecb3eda334f7e27f41b299343d32c243e4a14
2023-06-20 09:44:23 -07:00
Intl Scheduler 17ae70a526 translation auto-update for i18n/talk.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862872

fbshipit-source-id: 94504834f9703f8e5e716c998dc3a0e49d2546a2
2023-06-20 09:44:23 -07:00
Intl Scheduler 049f646519 translation auto-update for i18n/portal_alohausers.config.json on master
Summary:
Chronos Job Instance ID: 1125907903421526
Sandcastle Job Instance ID: 13510799858446338
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46862878

fbshipit-source-id: bb06270bd105db1804057a98fe6b61d2f966d118
2023-06-20 09:44:23 -07:00
Saad Najmi a4a8b4d8eb Remove some magic constants (#37875)
Summary:
RCTUITextView has two instances where it references some magic constants for font size and color. We inherited these in React Native macOS, and now I want to remove that diff & implement these properly :D.

Looking at commit history, these constants were found by UI inspecting a UITextView several years ago. We don't need to do this.. Apple provides API's for accessing these constants through the system. This gives us slightly better support for things like Large Text support (where 17 needs to be scaled) and Dark Mode (where the old placeholderFontColor is just wrong). Granted, these constants are overwritten almost immediately, I still thought it worth using the proper OS APIs.

The other nice thing about this API is they have very nice macOS equivalents, making the diffs nicer :).

## Changelog:

Pick one each for the category and type tags:

[IOS] [FIXED] - Remove some magic constants from RCTUITextView

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

Test Plan: Verified that the default UIFont is still 17 after this change.

Reviewed By: philIip

Differential Revision: D46770167

Pulled By: dmytrorykun

fbshipit-source-id: f577b5242a0c896d232f090ef2ffa5f452f8a191
2023-06-20 09:37:38 -07:00
Pieter De Baets 9d4cacee53 Remove FakeAsyncLocalStorage from GitHub (#37975)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37975

AsyncLocalStorage is no longer distributed with react-native, so neither should this test mock be.

Changelog: [Internal]

Reviewed By: rshest

Differential Revision: D46857153

fbshipit-source-id: 3fdb2d95f3185b85a0777fde6ce59165c8ace8e9
2023-06-20 08:53:03 -07:00
Nicola Corti 9f7dddf1ac AGP to 8.0.2 (#37019)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37019

This bumps the version of AGP to the latest stable.
There was a breaking change in how buildConfig are built which I had to handle.
This also requires a bump of RNGP to work correctly.
Moreover, we now required Java 17 to build Android apps (as that's a AGP requirement).

Changelog:
[Android] [Changed] - Java to 17 and AGP to 8.0.2

Reviewed By: cipolleschi

Differential Revision: D45178748

fbshipit-source-id: 0f302e1f2f2ee56bd3566202fbb5ef67c9b220db
2023-06-20 08:00:05 -07:00
Intl Scheduler cba13bb7bf translation auto-update for i18n/creatorstudio.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857047

fbshipit-source-id: 0de1a28af7783388bcf5a9f632d21b4afcc07948
2023-06-20 05:38:51 -07:00
Intl Scheduler 9db70763ef translation auto-update for i18n/talk.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857056

fbshipit-source-id: 4d5744bd6f90b2036248b3f19e5fb138e44a9537
2023-06-20 05:38:51 -07:00
Intl Scheduler 58f0d46837 translation auto-update for i18n/pages-manager.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857049

fbshipit-source-id: 4491d9557d44809ebca6183292dbbbb1d44cffe7
2023-06-20 05:38:51 -07:00
Intl Scheduler c1379d143f translation auto-update for i18n/fb4a.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857046

fbshipit-source-id: 4826c75d8a553361c501e9d05b53fc54b3da06b6
2023-06-20 05:38:51 -07:00
Intl Scheduler 595e56d401 translation auto-update for i18n/instagram.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857054

fbshipit-source-id: 526ccd7455711e1baebbf059882a30bcdca48c94
2023-06-20 05:38:51 -07:00
Intl Scheduler 2b6699e1a8 translation auto-update for i18n/twilight.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857050

fbshipit-source-id: 1ea396127cbfe52c7279158ce28666e44f8c9216
2023-06-20 05:38:51 -07:00
Intl Scheduler d741f56353 translation auto-update for i18n/messenger.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857053

fbshipit-source-id: de055b9bb67eb6519de875a85e4d612ca20b39cf
2023-06-20 05:38:51 -07:00
Intl Scheduler 4067b38165 translation auto-update for i18n/oculus-mirage.config.json on master
Summary:
Chronos Job Instance ID: 1125907903026576
Sandcastle Job Instance ID: 13510799858272981
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46857058

fbshipit-source-id: b14940e6b931a5add22d0a11e023ed6895617b0b
2023-06-20 05:38:51 -07:00
Intl Scheduler 6e1210e72e translation auto-update for Apps/Wilde/scripts/intl-config.json on master
Summary:
Chronos Job Instance ID: 1125907903287368
Sandcastle Job Instance ID: 31525198368818645
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46856457

fbshipit-source-id: 23d16aef61a7d4cc19951f3008a6de3323c54fd1
2023-06-20 04:49:13 -07:00
Lulu Wu 28c26dc305 Add CMakeLists to build C++ files in OSS (#37969)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37969

Add CMakeLists to build Bridgeless C++ files in OSS

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D46527523

fbshipit-source-id: 93427732461f8efdeff671bff86557ecde5eea47
2023-06-19 21:31:07 -07:00
Intl Scheduler 739c084e3b translation auto-update for Apps/Wilde/scripts/intl-config.json on master
Summary:
Chronos Job Instance ID: 1125907903072414
Sandcastle Job Instance ID: 27021598739221974
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46849012

fbshipit-source-id: 6ba7a9c055b751328431f005ef7429c9ab4bb2f1
2023-06-19 20:41:01 -07:00
Lulu Wu a3c7102d5c Add a separate HermesInstance for internal (#37968)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37968

Currently we have 2 versions of JSITracing:
- [Internal](https://www.internalfb.com/code/fbsource/[06c0641fed51160887cdaec18d22dd39d11ee1c0]/xplat/ReactNative/react/jsi/JSITracing.h)
- [OSS](https://www.internalfb.com/code/fbsource/[06c0641fed51160887cdaec18d22dd39d11ee1c0]/xplat/js/react-native-github/packages/react-native/ReactCommon/hermes/executor/JSITracing.h)

After talking with rubennorte it's expected that the OSS version has empty implementation and we want to keep it this way for Bridgeless as well.

To include both OSS and internal JSITracing for Bridgeless, in this diff a duplicate internal HermesInstance is created, after this change:
- Internal HermesInstance will use existed internal JSITracing
- OSS HermesInstance will use existed OSS JSITracing

The newly created internal HermesInstance will be located in existed internal Hermes folder which was created for the Bridge.

**Is there a better way to solve this issue?**
- I thought about including both versions of JSITracing in ReactInstance.cpp but couldn't find a way to unify the including paths for JSITracing.h inside ReactInstance.cpp

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D46527522

fbshipit-source-id: 7d2c14a6313e89bf5daaf668867cae31442e81b1
2023-06-19 20:00:03 -07:00
Lulu Wu 0e1a82f4b7 Change <fb/fbjni.h> to <fbjni/fbjni.h> to make it work in OSS (#37661)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37661

~~As title, Hermes will be supported. JSC not yet.~~

**Update 8th June:**

Split the original diff to 3 diffs, this one will simply change the head file path.

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D46324942

fbshipit-source-id: ab2e54d0d8104d635b2405a818d5413adba304a6
2023-06-19 18:42:19 -07:00
Intl Scheduler 4db3ed9ff1 translation auto-update for i18n/pages-manager.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848285

fbshipit-source-id: 8062843cd18a89a1c10b0a83d403fae81ff28135
2023-06-19 18:32:32 -07:00
Intl Scheduler 7ec1d6699b translation auto-update for i18n/analyticsapp.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848273

fbshipit-source-id: a895d120d90260cf4f1e88f1afc96fa3241b7eb4
2023-06-19 18:32:32 -07:00
Intl Scheduler 5c1eaa3d02 translation auto-update for i18n/portal_async.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848286

fbshipit-source-id: ee5504773a7fde305442ccbb68ef3a2bd510b00f
2023-06-19 18:32:32 -07:00
Intl Scheduler 4cb93999b4 translation auto-update for i18n/portal_ar.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848291

fbshipit-source-id: 3f21c94d4c988d225efe8da02a67a75de08ece4a
2023-06-19 18:32:32 -07:00
Intl Scheduler 3b86071691 translation auto-update for i18n/barcelona.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848279

fbshipit-source-id: 1ad04f3fb45a6c9cdb41bd403189bb5be6666d2a
2023-06-19 18:32:32 -07:00
Intl Scheduler fb74710f98 translation auto-update for i18n/instagram.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848275

fbshipit-source-id: e26c951abe26d38f9d94306496830dcc294dad74
2023-06-19 18:32:32 -07:00
Intl Scheduler 89fe0949eb translation auto-update for i18n/anna.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848278

fbshipit-source-id: 769c652370d32816181f968a56984aa08f90edb8
2023-06-19 18:32:32 -07:00
Intl Scheduler 5364d998c4 translation auto-update for i18n/creatorstudio.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368528448
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46848290

fbshipit-source-id: d30538d8600e6254807cd9a1e87a1a25fe7560ce
2023-06-19 18:32:32 -07:00
Intl Scheduler 33deed5189 translation auto-update for i18n/anna.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368381932
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46845202

fbshipit-source-id: 94829405e039039335d93e16b8b5d0c947b7ae62
2023-06-19 12:49:35 -07:00
Intl Scheduler c7ffb5ee31 translation auto-update for i18n/messenger.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368381932
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46845215

fbshipit-source-id: 2470fffb563b349c2e8cc75043ce5aa539899ea7
2023-06-19 12:49:35 -07:00
Intl Scheduler 356db63c9e translation auto-update for i18n/oculus-mirage.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368381932
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46845205

fbshipit-source-id: 596000b53f9661cb100bfda2f01b5b38dc002325
2023-06-19 12:49:35 -07:00
Intl Scheduler 91fc359974 translation auto-update for i18n/instagram.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368381932
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46845211

fbshipit-source-id: 175119b90703ae249a422a2c277b614cac896bf6
2023-06-19 12:49:35 -07:00
Intl Scheduler 14ef6328ca translation auto-update for i18n/twilight.config.json on master
Summary:
Chronos Job Instance ID: 1125907902915429
Sandcastle Job Instance ID: 31525198368381932
allow-large-files
ignore-conflict-markers
opt-out-review

Differential Revision: D46845220

fbshipit-source-id: 1364a2fe866162b10466ec62dab0d5446f067def
2023-06-19 12:49:35 -07:00