Skip to content

Commit 512c9fb

Browse files
committed
Remove feature flag enableRenderableContext (#33505)
The flag is fully rolled out. DiffTrain build for [6c86e56](6c86e56)
1 parent 07f9b02 commit 512c9fb

29 files changed

+112
-148
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-c38e2689-20250609
1+
19.2.0-native-fb-6c86e56a-20250611

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<<f660a097df86c854e2c5ddc26ec6b5d8>>
10+
* @generated SignedSource<<f43fb1f2849d0d18068f82dce2611f6f>>
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-c38e2689-20250609";
407+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";
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<<62f37a389aea3724c49e6baca478992f>>
10+
* @generated SignedSource<<4c3531f72e1656501ba5c32381d5f1da>>
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-c38e2689-20250609";
206+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";

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<<62f37a389aea3724c49e6baca478992f>>
10+
* @generated SignedSource<<4c3531f72e1656501ba5c32381d5f1da>>
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-c38e2689-20250609";
206+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";

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

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<ca5da946891018cff8d61899bde03d0c>>
10+
* @generated SignedSource<<9161f166a5d58562c68c326bbc8d7b8a>>
1111
*/
1212

1313
/*
@@ -4418,7 +4418,6 @@ __DEV__ &&
44184418
default:
44194419
if ("object" === typeof type && null !== type)
44204420
switch (type.$$typeof) {
4421-
case REACT_PROVIDER_TYPE:
44224421
case REACT_CONTEXT_TYPE:
44234422
fiberTag = 10;
44244423
break a;
@@ -11486,8 +11485,8 @@ __DEV__ &&
1148611485
);
1148711486
return workInProgress.child;
1148811487
case 10:
11489-
var context = workInProgress.type;
11490-
var newProps = workInProgress.pendingProps,
11488+
var context = workInProgress.type,
11489+
newProps = workInProgress.pendingProps,
1149111490
newValue = newProps.value;
1149211491
"value" in newProps ||
1149311492
hasWarnedAboutUsingNoValuePropOnContextProvider ||
@@ -11504,8 +11503,8 @@ __DEV__ &&
1150411503
);
1150511504
return workInProgress.child;
1150611505
case 9:
11507-
var context$jscomp$0 = workInProgress.type._context;
11508-
var render = workInProgress.pendingProps.children;
11506+
var context$jscomp$0 = workInProgress.type._context,
11507+
render = workInProgress.pendingProps.children;
1150911508
"function" !== typeof render &&
1151011509
console.error(
1151111510
"A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."
@@ -23238,7 +23237,6 @@ __DEV__ &&
2323823237
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
2323923238
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
2324023239
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
23241-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
2324223240
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
2324323241
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
2324423242
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -27069,11 +27067,11 @@ __DEV__ &&
2706927067
};
2707027068
(function () {
2707127069
var isomorphicReactPackageVersion = React.version;
27072-
if ("19.2.0-native-fb-c38e2689-20250609" !== isomorphicReactPackageVersion)
27070+
if ("19.2.0-native-fb-6c86e56a-20250611" !== isomorphicReactPackageVersion)
2707327071
throw Error(
2707427072
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2707527073
(isomorphicReactPackageVersion +
27076-
"\n - react-dom: 19.2.0-native-fb-c38e2689-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
27074+
"\n - react-dom: 19.2.0-native-fb-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
2707727075
);
2707827076
})();
2707927077
("function" === typeof Map &&
@@ -27110,10 +27108,10 @@ __DEV__ &&
2711027108
!(function () {
2711127109
var internals = {
2711227110
bundleType: 1,
27113-
version: "19.2.0-native-fb-c38e2689-20250609",
27111+
version: "19.2.0-native-fb-6c86e56a-20250611",
2711427112
rendererPackageName: "react-dom",
2711527113
currentDispatcherRef: ReactSharedInternals,
27116-
reconcilerVersion: "19.2.0-native-fb-c38e2689-20250609"
27114+
reconcilerVersion: "19.2.0-native-fb-6c86e56a-20250611"
2711727115
};
2711827116
internals.overrideHookState = overrideHookState;
2711927117
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -27251,5 +27249,5 @@ __DEV__ &&
2725127249
listenToAllSupportedEvents(container);
2725227250
return new ReactDOMHydrationRoot(initialChildren);
2725327251
};
27254-
exports.version = "19.2.0-native-fb-c38e2689-20250609";
27252+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";
2725527253
})();

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

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

1313
/*
@@ -266,7 +266,6 @@ var assign = Object.assign,
266266
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
267267
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
268268
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
269-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
270269
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
271270
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
272271
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2811,7 +2810,6 @@ function createFiberFromTypeAndProps(
28112810
default:
28122811
if ("object" === typeof type && null !== type)
28132812
switch (type.$$typeof) {
2814-
case REACT_PROVIDER_TYPE:
28152813
case REACT_CONTEXT_TYPE:
28162814
fiberTag = 10;
28172815
break a;
@@ -17120,14 +17118,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1712017118
};
1712117119
var isomorphicReactPackageVersion$jscomp$inline_2017 = React.version;
1712217120
if (
17123-
"19.2.0-native-fb-c38e2689-20250609" !==
17121+
"19.2.0-native-fb-6c86e56a-20250611" !==
1712417122
isomorphicReactPackageVersion$jscomp$inline_2017
1712517123
)
1712617124
throw Error(
1712717125
formatProdErrorMessage(
1712817126
527,
1712917127
isomorphicReactPackageVersion$jscomp$inline_2017,
17130-
"19.2.0-native-fb-c38e2689-20250609"
17128+
"19.2.0-native-fb-6c86e56a-20250611"
1713117129
)
1713217130
);
1713317131
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17149,10 +17147,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1714917147
};
1715017148
var internals$jscomp$inline_2536 = {
1715117149
bundleType: 0,
17152-
version: "19.2.0-native-fb-c38e2689-20250609",
17150+
version: "19.2.0-native-fb-6c86e56a-20250611",
1715317151
rendererPackageName: "react-dom",
1715417152
currentDispatcherRef: ReactSharedInternals,
17155-
reconcilerVersion: "19.2.0-native-fb-c38e2689-20250609"
17153+
reconcilerVersion: "19.2.0-native-fb-6c86e56a-20250611"
1715617154
};
1715717155
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1715817156
var hook$jscomp$inline_2537 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17250,4 +17248,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1725017248
listenToAllSupportedEvents(container);
1725117249
return new ReactDOMHydrationRoot(initialChildren);
1725217250
};
17253-
exports.version = "19.2.0-native-fb-c38e2689-20250609";
17251+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";

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

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

1313
/*
@@ -266,7 +266,6 @@ var assign = Object.assign,
266266
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
267267
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
268268
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
269-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
270269
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
271270
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
272271
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2905,7 +2904,6 @@ function createFiberFromTypeAndProps(
29052904
default:
29062905
if ("object" === typeof type && null !== type)
29072906
switch (type.$$typeof) {
2908-
case REACT_PROVIDER_TYPE:
29092907
case REACT_CONTEXT_TYPE:
29102908
fiberTag = 10;
29112909
break a;
@@ -17830,14 +17828,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1783017828
};
1783117829
var isomorphicReactPackageVersion$jscomp$inline_2120 = React.version;
1783217830
if (
17833-
"19.2.0-native-fb-c38e2689-20250609" !==
17831+
"19.2.0-native-fb-6c86e56a-20250611" !==
1783417832
isomorphicReactPackageVersion$jscomp$inline_2120
1783517833
)
1783617834
throw Error(
1783717835
formatProdErrorMessage(
1783817836
527,
1783917837
isomorphicReactPackageVersion$jscomp$inline_2120,
17840-
"19.2.0-native-fb-c38e2689-20250609"
17838+
"19.2.0-native-fb-6c86e56a-20250611"
1784117839
)
1784217840
);
1784317841
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17859,10 +17857,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1785917857
};
1786017858
var internals$jscomp$inline_2127 = {
1786117859
bundleType: 0,
17862-
version: "19.2.0-native-fb-c38e2689-20250609",
17860+
version: "19.2.0-native-fb-6c86e56a-20250611",
1786317861
rendererPackageName: "react-dom",
1786417862
currentDispatcherRef: ReactSharedInternals,
17865-
reconcilerVersion: "19.2.0-native-fb-c38e2689-20250609",
17863+
reconcilerVersion: "19.2.0-native-fb-6c86e56a-20250611",
1786617864
getLaneLabelMap: function () {
1786717865
for (
1786817866
var map = new Map(), lane = 1, index$313 = 0;
@@ -17975,4 +17973,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1797517973
listenToAllSupportedEvents(container);
1797617974
return new ReactDOMHydrationRoot(initialChildren);
1797717975
};
17978-
exports.version = "19.2.0-native-fb-c38e2689-20250609";
17976+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";

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

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<73d9fa34ec237b6391e5b31e94a06f12>>
10+
* @generated SignedSource<<a302907adb16876f0ccd9831546a7808>>
1111
*/
1212

1313
/*
@@ -4426,7 +4426,6 @@ __DEV__ &&
44264426
default:
44274427
if ("object" === typeof type && null !== type)
44284428
switch (type.$$typeof) {
4429-
case REACT_PROVIDER_TYPE:
44304429
case REACT_CONTEXT_TYPE:
44314430
fiberTag = 10;
44324431
break a;
@@ -11494,8 +11493,8 @@ __DEV__ &&
1149411493
);
1149511494
return workInProgress.child;
1149611495
case 10:
11497-
var context = workInProgress.type;
11498-
var newProps = workInProgress.pendingProps,
11496+
var context = workInProgress.type,
11497+
newProps = workInProgress.pendingProps,
1149911498
newValue = newProps.value;
1150011499
"value" in newProps ||
1150111500
hasWarnedAboutUsingNoValuePropOnContextProvider ||
@@ -11512,8 +11511,8 @@ __DEV__ &&
1151211511
);
1151311512
return workInProgress.child;
1151411513
case 9:
11515-
var context$jscomp$0 = workInProgress.type._context;
11516-
var render = workInProgress.pendingProps.children;
11514+
var context$jscomp$0 = workInProgress.type._context,
11515+
render = workInProgress.pendingProps.children;
1151711516
"function" !== typeof render &&
1151811517
console.error(
1151911518
"A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."
@@ -23294,7 +23293,6 @@ __DEV__ &&
2329423293
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
2329523294
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
2329623295
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
23297-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
2329823296
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
2329923297
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
2330023298
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -27125,11 +27123,11 @@ __DEV__ &&
2712527123
};
2712627124
(function () {
2712727125
var isomorphicReactPackageVersion = React.version;
27128-
if ("19.2.0-native-fb-c38e2689-20250609" !== isomorphicReactPackageVersion)
27126+
if ("19.2.0-native-fb-6c86e56a-20250611" !== isomorphicReactPackageVersion)
2712927127
throw Error(
2713027128
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
2713127129
(isomorphicReactPackageVersion +
27132-
"\n - react-dom: 19.2.0-native-fb-c38e2689-20250609\nLearn more: https://react.dev/warnings/version-mismatch")
27130+
"\n - react-dom: 19.2.0-native-fb-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
2713327131
);
2713427132
})();
2713527133
("function" === typeof Map &&
@@ -27166,10 +27164,10 @@ __DEV__ &&
2716627164
!(function () {
2716727165
var internals = {
2716827166
bundleType: 1,
27169-
version: "19.2.0-native-fb-c38e2689-20250609",
27167+
version: "19.2.0-native-fb-6c86e56a-20250611",
2717027168
rendererPackageName: "react-dom",
2717127169
currentDispatcherRef: ReactSharedInternals,
27172-
reconcilerVersion: "19.2.0-native-fb-c38e2689-20250609"
27170+
reconcilerVersion: "19.2.0-native-fb-6c86e56a-20250611"
2717327171
};
2717427172
internals.overrideHookState = overrideHookState;
2717527173
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -27623,7 +27621,7 @@ __DEV__ &&
2762327621
exports.useFormStatus = function () {
2762427622
return resolveDispatcher().useHostTransitionStatus();
2762527623
};
27626-
exports.version = "19.2.0-native-fb-c38e2689-20250609";
27624+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";
2762727625
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2762827626
"function" ===
2762927627
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 & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<0ef40058f23db68f833b4628232ab55e>>
10+
* @generated SignedSource<<2c063987ba7526ed833dd36590028098>>
1111
*/
1212

1313
/*
@@ -266,7 +266,6 @@ var assign = Object.assign,
266266
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
267267
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
268268
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
269-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
270269
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
271270
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
272271
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
@@ -2811,7 +2810,6 @@ function createFiberFromTypeAndProps(
28112810
default:
28122811
if ("object" === typeof type && null !== type)
28132812
switch (type.$$typeof) {
2814-
case REACT_PROVIDER_TYPE:
28152813
case REACT_CONTEXT_TYPE:
28162814
fiberTag = 10;
28172815
break a;
@@ -17131,14 +17129,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1713117129
};
1713217130
var isomorphicReactPackageVersion$jscomp$inline_2018 = React.version;
1713317131
if (
17134-
"19.2.0-native-fb-c38e2689-20250609" !==
17132+
"19.2.0-native-fb-6c86e56a-20250611" !==
1713517133
isomorphicReactPackageVersion$jscomp$inline_2018
1713617134
)
1713717135
throw Error(
1713817136
formatProdErrorMessage(
1713917137
527,
1714017138
isomorphicReactPackageVersion$jscomp$inline_2018,
17141-
"19.2.0-native-fb-c38e2689-20250609"
17139+
"19.2.0-native-fb-6c86e56a-20250611"
1714217140
)
1714317141
);
1714417142
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17160,10 +17158,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1716017158
};
1716117159
var internals$jscomp$inline_2539 = {
1716217160
bundleType: 0,
17163-
version: "19.2.0-native-fb-c38e2689-20250609",
17161+
version: "19.2.0-native-fb-6c86e56a-20250611",
1716417162
rendererPackageName: "react-dom",
1716517163
currentDispatcherRef: ReactSharedInternals,
17166-
reconcilerVersion: "19.2.0-native-fb-c38e2689-20250609"
17164+
reconcilerVersion: "19.2.0-native-fb-6c86e56a-20250611"
1716717165
};
1716817166
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1716917167
var hook$jscomp$inline_2540 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17414,4 +17412,4 @@ exports.useFormState = function (action, initialState, permalink) {
1741417412
exports.useFormStatus = function () {
1741517413
return ReactSharedInternals.H.useHostTransitionStatus();
1741617414
};
17417-
exports.version = "19.2.0-native-fb-c38e2689-20250609";
17415+
exports.version = "19.2.0-native-fb-6c86e56a-20250611";

0 commit comments

Comments
 (0)