Skip to content

Commit f148637

Browse files
committed
Increase nested update limit to 100 (#31061)
We're seeing the limit hit in some tests after enabling sibling prerendering. Let's bump the limit so we can run more tests and gather more signal on the changes. When we understand the scope of the problem we can determine whether we need to change how the updates are counted in prerenders and/or fix specific areas of product code. DiffTrain build for [f9ebd85](f9ebd85)
1 parent 97355e0 commit f148637

34 files changed

+116
-116
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
f9ebd85a196948be17efdd6774b4d0464b3b1f53
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
f9ebd85a196948be17efdd6774b4d0464b3b1f53

compiled/facebook-www/React-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2000,7 +2000,7 @@ __DEV__ &&
20002000
exports.useTransition = function () {
20012001
return resolveDispatcher().useTransition();
20022002
};
2003-
exports.version = "19.0.0-www-classic-04bd67a4-20240924";
2003+
exports.version = "19.0.0-www-classic-f9ebd85a-20240925";
20042004
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
20052005
"function" ===
20062006
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1980,7 +1980,7 @@ __DEV__ &&
19801980
exports.useTransition = function () {
19811981
return resolveDispatcher().useTransition();
19821982
};
1983-
exports.version = "19.0.0-www-modern-04bd67a4-20240924";
1983+
exports.version = "19.0.0-www-modern-f9ebd85a-20240925";
19841984
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
19851985
"function" ===
19861986
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
665665
exports.useTransition = function () {
666666
return ReactSharedInternals.H.useTransition();
667667
};
668-
exports.version = "19.0.0-www-classic-04bd67a4-20240924";
668+
exports.version = "19.0.0-www-classic-f9ebd85a-20240925";

compiled/facebook-www/React-prod.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
665665
exports.useTransition = function () {
666666
return ReactSharedInternals.H.useTransition();
667667
};
668-
exports.version = "19.0.0-www-modern-04bd67a4-20240924";
668+
exports.version = "19.0.0-www-modern-f9ebd85a-20240925";

compiled/facebook-www/React-profiling.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-classic-04bd67a4-20240924";
672+
exports.version = "19.0.0-www-classic-f9ebd85a-20240925";
673673
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674674
"function" ===
675675
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
669669
exports.useTransition = function () {
670670
return ReactSharedInternals.H.useTransition();
671671
};
672-
exports.version = "19.0.0-www-modern-04bd67a4-20240924";
672+
exports.version = "19.0.0-www-modern-f9ebd85a-20240925";
673673
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
674674
"function" ===
675675
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16837,12 +16837,12 @@ __DEV__ &&
1683716837
pendingPassiveEffectsLanes = 0,
1683816838
pendingPassiveEffectsRemainingLanes = 0,
1683916839
pendingPassiveTransitions = null,
16840-
NESTED_UPDATE_LIMIT = 50,
16840+
NESTED_UPDATE_LIMIT = 100,
1684116841
nestedUpdateCount = 0,
1684216842
rootWithNestedUpdates = null,
1684316843
isFlushingPassiveEffects = !1,
1684416844
didScheduleUpdateDuringPassiveEffects = !1,
16845-
NESTED_PASSIVE_UPDATE_LIMIT = 50,
16845+
NESTED_PASSIVE_UPDATE_LIMIT = 100,
1684616846
nestedPassiveUpdateCount = 0,
1684716847
rootWithPassiveNestedUpdates = null,
1684816848
isRunningInsertionEffect = !1,
@@ -17072,11 +17072,11 @@ __DEV__ &&
1707217072
(function () {
1707317073
var internals = {
1707417074
bundleType: 1,
17075-
version: "19.0.0-www-classic-04bd67a4-20240924",
17075+
version: "19.0.0-www-classic-f9ebd85a-20240925",
1707617076
rendererPackageName: "react-art",
1707717077
currentDispatcherRef: ReactSharedInternals,
1707817078
findFiberByHostInstance: getInstanceFromNode,
17079-
reconcilerVersion: "19.0.0-www-classic-04bd67a4-20240924"
17079+
reconcilerVersion: "19.0.0-www-classic-f9ebd85a-20240925"
1708017080
};
1708117081
internals.overrideHookState = overrideHookState;
1708217082
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -17110,7 +17110,7 @@ __DEV__ &&
1711017110
exports.Shape = Shape;
1711117111
exports.Surface = Surface;
1711217112
exports.Text = Text;
17113-
exports.version = "19.0.0-www-classic-04bd67a4-20240924";
17113+
exports.version = "19.0.0-www-classic-f9ebd85a-20240925";
1711417114
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1711517115
"function" ===
1711617116
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.modern.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16284,12 +16284,12 @@ __DEV__ &&
1628416284
pendingPassiveEffectsLanes = 0,
1628516285
pendingPassiveEffectsRemainingLanes = 0,
1628616286
pendingPassiveTransitions = null,
16287-
NESTED_UPDATE_LIMIT = 50,
16287+
NESTED_UPDATE_LIMIT = 100,
1628816288
nestedUpdateCount = 0,
1628916289
rootWithNestedUpdates = null,
1629016290
isFlushingPassiveEffects = !1,
1629116291
didScheduleUpdateDuringPassiveEffects = !1,
16292-
NESTED_PASSIVE_UPDATE_LIMIT = 50,
16292+
NESTED_PASSIVE_UPDATE_LIMIT = 100,
1629316293
nestedPassiveUpdateCount = 0,
1629416294
rootWithPassiveNestedUpdates = null,
1629516295
isRunningInsertionEffect = !1,
@@ -16518,11 +16518,11 @@ __DEV__ &&
1651816518
(function () {
1651916519
var internals = {
1652016520
bundleType: 1,
16521-
version: "19.0.0-www-modern-04bd67a4-20240924",
16521+
version: "19.0.0-www-modern-f9ebd85a-20240925",
1652216522
rendererPackageName: "react-art",
1652316523
currentDispatcherRef: ReactSharedInternals,
1652416524
findFiberByHostInstance: getInstanceFromNode,
16525-
reconcilerVersion: "19.0.0-www-modern-04bd67a4-20240924"
16525+
reconcilerVersion: "19.0.0-www-modern-f9ebd85a-20240925"
1652616526
};
1652716527
internals.overrideHookState = overrideHookState;
1652816528
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16556,7 +16556,7 @@ __DEV__ &&
1655616556
exports.Shape = Shape;
1655716557
exports.Surface = Surface;
1655816558
exports.Text = Text;
16559-
exports.version = "19.0.0-www-modern-04bd67a4-20240924";
16559+
exports.version = "19.0.0-www-modern-f9ebd85a-20240925";
1656016560
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1656116561
"function" ===
1656216562
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)