Skip to content

Commit 509ce5d

Browse files
committed
[Runtime] Fix CI (facebook#33999)
DiffTrain build for [19baee8](facebook@19baee8)
1 parent 9e862db commit 509ce5d

26 files changed

+2749
-1183
lines changed

compiled-rn/VERSION_NATIVE_FB

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19.2.0-native-fb-4f34cc4a-20250724
1+
19.2.0-native-fb-19baee81-20250725

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<36576a06e92c04401c7b6a51ba51b65e>>
10+
* @generated SignedSource<<9b270a16206ab7973619428561e2048c>>
1111
*/
1212

1313
"use strict";
@@ -404,5 +404,5 @@ __DEV__ &&
404404
exports.useFormStatus = function () {
405405
return resolveDispatcher().useHostTransitionStatus();
406406
};
407-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
407+
exports.version = "19.2.0-native-fb-19baee81-20250725";
408408
})();

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<19b337269316c827065a6292577a989b>>
10+
* @generated SignedSource<<d951c93a38f8e641db74db4320e12d45>>
1111
*/
1212

1313
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
203203
exports.useFormStatus = function () {
204204
return ReactSharedInternals.H.useHostTransitionStatus();
205205
};
206-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
206+
exports.version = "19.2.0-native-fb-19baee81-20250725";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<19b337269316c827065a6292577a989b>>
10+
* @generated SignedSource<<d951c93a38f8e641db74db4320e12d45>>
1111
*/
1212

1313
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
203203
exports.useFormStatus = function () {
204204
return ReactSharedInternals.H.useHostTransitionStatus();
205205
};
206-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
206+
exports.version = "19.2.0-native-fb-19baee81-20250725";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<7afe6f1dab6a762fecc3cd5f836c374c>>
10+
* @generated SignedSource<<071efcef088b318f0a3b3fbf6b2ce842>>
1111
*/
1212

1313
/*
@@ -4261,7 +4261,7 @@ __DEV__ &&
42614261
selfTime.run(
42624262
performance.measure.bind(
42634263
performance,
4264-
name,
4264+
"\u200b" + name,
42654265
reusableComponentOptions
42664266
)
42674267
);
@@ -4333,8 +4333,10 @@ __DEV__ &&
43334333
}
43344334
};
43354335
debugTask
4336-
? debugTask.run(performance.measure.bind(performance, name, fiber))
4337-
: performance.measure(name, fiber);
4336+
? debugTask.run(
4337+
performance.measure.bind(performance, "\u200b" + name, fiber)
4338+
)
4339+
: performance.measure("\u200b" + name, fiber);
43384340
}
43394341
}
43404342
}
@@ -4373,9 +4375,13 @@ __DEV__ &&
43734375
};
43744376
(fiber = fiber._debugTask)
43754377
? fiber.run(
4376-
performance.measure.bind(performance, name, startTime)
4378+
performance.measure.bind(
4379+
performance,
4380+
"\u200b" + name,
4381+
startTime
4382+
)
43774383
)
4378-
: performance.measure(name, startTime);
4384+
: performance.measure("\u200b" + name, startTime);
43794385
}
43804386
}
43814387
} else
@@ -29006,11 +29012,11 @@ __DEV__ &&
2900629012
};
2900729013
(function () {
2900829014
var isomorphicReactPackageVersion = React.version;
29009-
if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
29015+
if ("19.2.0-native-fb-19baee81-20250725" !== isomorphicReactPackageVersion)
2901029016
throw Error(
2901129017
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2901229018
(isomorphicReactPackageVersion +
29013-
"\n - react-dom: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
29019+
"\n - react-dom: 19.2.0-native-fb-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
2901429020
);
2901529021
})();
2901629022
("function" === typeof Map &&
@@ -29047,10 +29053,10 @@ __DEV__ &&
2904729053
!(function () {
2904829054
var internals = {
2904929055
bundleType: 1,
29050-
version: "19.2.0-native-fb-4f34cc4a-20250724",
29056+
version: "19.2.0-native-fb-19baee81-20250725",
2905129057
rendererPackageName: "react-dom",
2905229058
currentDispatcherRef: ReactSharedInternals,
29053-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724"
29059+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725"
2905429060
};
2905529061
internals.overrideHookState = overrideHookState;
2905629062
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -29188,5 +29194,5 @@ __DEV__ &&
2918829194
listenToAllSupportedEvents(container);
2918929195
return new ReactDOMHydrationRoot(initialChildren);
2919029196
};
29191-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
29197+
exports.version = "19.2.0-native-fb-19baee81-20250725";
2919229198
})();

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<987465422a3c8669ee3e87c5ee069431>>
10+
* @generated SignedSource<<ca51ad8d30a4041fadd552b6d0ad0512>>
1111
*/
1212

1313
/*
@@ -17123,14 +17123,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1712317123
};
1712417124
var isomorphicReactPackageVersion$jscomp$inline_2004 = React.version;
1712517125
if (
17126-
"19.2.0-native-fb-4f34cc4a-20250724" !==
17126+
"19.2.0-native-fb-19baee81-20250725" !==
1712717127
isomorphicReactPackageVersion$jscomp$inline_2004
1712817128
)
1712917129
throw Error(
1713017130
formatProdErrorMessage(
1713117131
527,
1713217132
isomorphicReactPackageVersion$jscomp$inline_2004,
17133-
"19.2.0-native-fb-4f34cc4a-20250724"
17133+
"19.2.0-native-fb-19baee81-20250725"
1713417134
)
1713517135
);
1713617136
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17152,10 +17152,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1715217152
};
1715317153
var internals$jscomp$inline_2523 = {
1715417154
bundleType: 0,
17155-
version: "19.2.0-native-fb-4f34cc4a-20250724",
17155+
version: "19.2.0-native-fb-19baee81-20250725",
1715617156
rendererPackageName: "react-dom",
1715717157
currentDispatcherRef: ReactSharedInternals,
17158-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724"
17158+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725"
1715917159
};
1716017160
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1716117161
var hook$jscomp$inline_2524 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17253,4 +17253,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1725317253
listenToAllSupportedEvents(container);
1725417254
return new ReactDOMHydrationRoot(initialChildren);
1725517255
};
17256-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
17256+
exports.version = "19.2.0-native-fb-19baee81-20250725";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<201ce386f08a0993745350b476773407>>
10+
* @generated SignedSource<<310d170216c04a7e942b2b78e12a6a7c>>
1111
*/
1212

1313
/*
@@ -19081,14 +19081,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1908119081
};
1908219082
var isomorphicReactPackageVersion$jscomp$inline_2244 = React.version;
1908319083
if (
19084-
"19.2.0-native-fb-4f34cc4a-20250724" !==
19084+
"19.2.0-native-fb-19baee81-20250725" !==
1908519085
isomorphicReactPackageVersion$jscomp$inline_2244
1908619086
)
1908719087
throw Error(
1908819088
formatProdErrorMessage(
1908919089
527,
1909019090
isomorphicReactPackageVersion$jscomp$inline_2244,
19091-
"19.2.0-native-fb-4f34cc4a-20250724"
19091+
"19.2.0-native-fb-19baee81-20250725"
1909219092
)
1909319093
);
1909419094
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19110,10 +19110,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1911019110
};
1911119111
var internals$jscomp$inline_2251 = {
1911219112
bundleType: 0,
19113-
version: "19.2.0-native-fb-4f34cc4a-20250724",
19113+
version: "19.2.0-native-fb-19baee81-20250725",
1911419114
rendererPackageName: "react-dom",
1911519115
currentDispatcherRef: ReactSharedInternals,
19116-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724",
19116+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725",
1911719117
getLaneLabelMap: function () {
1911819118
for (
1911919119
var map = new Map(), lane = 1, index$319 = 0;
@@ -19226,4 +19226,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1922619226
listenToAllSupportedEvents(container);
1922719227
return new ReactDOMHydrationRoot(initialChildren);
1922819228
};
19229-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
19229+
exports.version = "19.2.0-native-fb-19baee81-20250725";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<b0fdfdd86e3539ba2889617dd8b950f4>>
10+
* @generated SignedSource<<2be065e8d604917db31da29e33c71a6e>>
1111
*/
1212

1313
/*
@@ -4269,7 +4269,7 @@ __DEV__ &&
42694269
selfTime.run(
42704270
performance.measure.bind(
42714271
performance,
4272-
name,
4272+
"\u200b" + name,
42734273
reusableComponentOptions
42744274
)
42754275
);
@@ -4341,8 +4341,10 @@ __DEV__ &&
43414341
}
43424342
};
43434343
debugTask
4344-
? debugTask.run(performance.measure.bind(performance, name, fiber))
4345-
: performance.measure(name, fiber);
4344+
? debugTask.run(
4345+
performance.measure.bind(performance, "\u200b" + name, fiber)
4346+
)
4347+
: performance.measure("\u200b" + name, fiber);
43464348
}
43474349
}
43484350
}
@@ -4381,9 +4383,13 @@ __DEV__ &&
43814383
};
43824384
(fiber = fiber._debugTask)
43834385
? fiber.run(
4384-
performance.measure.bind(performance, name, startTime)
4386+
performance.measure.bind(
4387+
performance,
4388+
"\u200b" + name,
4389+
startTime
4390+
)
43854391
)
4386-
: performance.measure(name, startTime);
4392+
: performance.measure("\u200b" + name, startTime);
43874393
}
43884394
}
43894395
} else
@@ -29062,11 +29068,11 @@ __DEV__ &&
2906229068
};
2906329069
(function () {
2906429070
var isomorphicReactPackageVersion = React.version;
29065-
if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion)
29071+
if ("19.2.0-native-fb-19baee81-20250725" !== isomorphicReactPackageVersion)
2906629072
throw Error(
2906729073
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2906829074
(isomorphicReactPackageVersion +
29069-
"\n - react-dom: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch")
29075+
"\n - react-dom: 19.2.0-native-fb-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
2907029076
);
2907129077
})();
2907229078
("function" === typeof Map &&
@@ -29103,10 +29109,10 @@ __DEV__ &&
2910329109
!(function () {
2910429110
var internals = {
2910529111
bundleType: 1,
29106-
version: "19.2.0-native-fb-4f34cc4a-20250724",
29112+
version: "19.2.0-native-fb-19baee81-20250725",
2910729113
rendererPackageName: "react-dom",
2910829114
currentDispatcherRef: ReactSharedInternals,
29109-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724"
29115+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725"
2911029116
};
2911129117
internals.overrideHookState = overrideHookState;
2911229118
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -29560,7 +29566,7 @@ __DEV__ &&
2956029566
exports.useFormStatus = function () {
2956129567
return resolveDispatcher().useHostTransitionStatus();
2956229568
};
29563-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
29569+
exports.version = "19.2.0-native-fb-19baee81-20250725";
2956429570
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2956529571
"function" ===
2956629572
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<5b0baaab13ef01e3b3b1c97ddfb33b35>>
10+
* @generated SignedSource<<c01c0236135eae0760887c74c072580e>>
1111
*/
1212

1313
/*
@@ -17134,14 +17134,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1713417134
};
1713517135
var isomorphicReactPackageVersion$jscomp$inline_2005 = React.version;
1713617136
if (
17137-
"19.2.0-native-fb-4f34cc4a-20250724" !==
17137+
"19.2.0-native-fb-19baee81-20250725" !==
1713817138
isomorphicReactPackageVersion$jscomp$inline_2005
1713917139
)
1714017140
throw Error(
1714117141
formatProdErrorMessage(
1714217142
527,
1714317143
isomorphicReactPackageVersion$jscomp$inline_2005,
17144-
"19.2.0-native-fb-4f34cc4a-20250724"
17144+
"19.2.0-native-fb-19baee81-20250725"
1714517145
)
1714617146
);
1714717147
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17163,10 +17163,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1716317163
};
1716417164
var internals$jscomp$inline_2526 = {
1716517165
bundleType: 0,
17166-
version: "19.2.0-native-fb-4f34cc4a-20250724",
17166+
version: "19.2.0-native-fb-19baee81-20250725",
1716717167
rendererPackageName: "react-dom",
1716817168
currentDispatcherRef: ReactSharedInternals,
17169-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724"
17169+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725"
1717017170
};
1717117171
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1717217172
var hook$jscomp$inline_2527 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17417,4 +17417,4 @@ exports.useFormState = function (action, initialState, permalink) {
1741717417
exports.useFormStatus = function () {
1741817418
return ReactSharedInternals.H.useHostTransitionStatus();
1741917419
};
17420-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
17420+
exports.version = "19.2.0-native-fb-19baee81-20250725";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<0efa130b0c81e8a43c1bbaba338e429b>>
10+
* @generated SignedSource<<2c7cd821b9a543e926497c6369f739ba>>
1111
*/
1212

1313
/*
@@ -19096,14 +19096,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1909619096
};
1909719097
var isomorphicReactPackageVersion$jscomp$inline_2245 = React.version;
1909819098
if (
19099-
"19.2.0-native-fb-4f34cc4a-20250724" !==
19099+
"19.2.0-native-fb-19baee81-20250725" !==
1910019100
isomorphicReactPackageVersion$jscomp$inline_2245
1910119101
)
1910219102
throw Error(
1910319103
formatProdErrorMessage(
1910419104
527,
1910519105
isomorphicReactPackageVersion$jscomp$inline_2245,
19106-
"19.2.0-native-fb-4f34cc4a-20250724"
19106+
"19.2.0-native-fb-19baee81-20250725"
1910719107
)
1910819108
);
1910919109
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19125,10 +19125,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1912519125
};
1912619126
var internals$jscomp$inline_2252 = {
1912719127
bundleType: 0,
19128-
version: "19.2.0-native-fb-4f34cc4a-20250724",
19128+
version: "19.2.0-native-fb-19baee81-20250725",
1912919129
rendererPackageName: "react-dom",
1913019130
currentDispatcherRef: ReactSharedInternals,
19131-
reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724",
19131+
reconcilerVersion: "19.2.0-native-fb-19baee81-20250725",
1913219132
getLaneLabelMap: function () {
1913319133
for (
1913419134
var map = new Map(), lane = 1, index$319 = 0;
@@ -19394,7 +19394,7 @@ exports.useFormState = function (action, initialState, permalink) {
1939419394
exports.useFormStatus = function () {
1939519395
return ReactSharedInternals.H.useHostTransitionStatus();
1939619396
};
19397-
exports.version = "19.2.0-native-fb-4f34cc4a-20250724";
19397+
exports.version = "19.2.0-native-fb-19baee81-20250725";
1939819398
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1939919399
"function" ===
1940019400
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)