Skip to content

Commit f7bb410

Browse files
committed
React DevTools 4.28.4 -> 4.28.5 (#27538)
Changes: * fix[devtools/useMemoCache]: add stub for useMemoCache in ReactDebugHook ([hoxyq](https://github.com/hoxyq) in [#27472](facebook/react#27472)) * useDeferredValue should skip initialValue if it suspends ([acdlite](https://github.com/acdlite) in [#27509](facebook/react#27509)) * feat[react-devtools-extensions/logging]: initialize session id on the client for logging ([hoxyq](https://github.com/hoxyq) in [#27517](facebook/react#27517)) * refactor[react-devtools-extensions]: use globals to eliminate dead code ([hoxyq](https://github.com/hoxyq) in [#27516](facebook/react#27516)) * fix[devtools/inspectElement]: dont pause initial inspectElement call when user switches tabs ([hoxyq](https://github.com/hoxyq) in [#27488](facebook/react#27488)) DiffTrain build for commit facebook/react@20c91b6.
1 parent 5fd6d38 commit f7bb410

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24878,7 +24878,7 @@ function createFiberRoot(
2487824878
return root;
2487924879
}
2488024880

24881-
var ReactVersion = "18.3.0-canary-e3748a0bd-20231017";
24881+
var ReactVersion = "18.3.0-canary-20c91b653-20231018";
2488224882

2488324883
// Might add PROFILE later.
2488424884

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-prod.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9022,7 +9022,7 @@ var devToolsConfig$jscomp$inline_1031 = {
90229022
throw Error("TestRenderer does not support findFiberByHostInstance()");
90239023
},
90249024
bundleType: 0,
9025-
version: "18.3.0-canary-e3748a0bd-20231017",
9025+
version: "18.3.0-canary-20c91b653-20231018",
90269026
rendererPackageName: "react-test-renderer"
90279027
};
90289028
var internals$jscomp$inline_1224 = {
@@ -9053,7 +9053,7 @@ var internals$jscomp$inline_1224 = {
90539053
scheduleRoot: null,
90549054
setRefreshHandler: null,
90559055
getCurrentFiber: null,
9056-
reconcilerVersion: "18.3.0-canary-e3748a0bd-20231017"
9056+
reconcilerVersion: "18.3.0-canary-20c91b653-20231018"
90579057
};
90589058
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
90599059
var hook$jscomp$inline_1225 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-profiling.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9448,7 +9448,7 @@ var devToolsConfig$jscomp$inline_1073 = {
94489448
throw Error("TestRenderer does not support findFiberByHostInstance()");
94499449
},
94509450
bundleType: 0,
9451-
version: "18.3.0-canary-e3748a0bd-20231017",
9451+
version: "18.3.0-canary-20c91b653-20231018",
94529452
rendererPackageName: "react-test-renderer"
94539453
};
94549454
var internals$jscomp$inline_1265 = {
@@ -9479,7 +9479,7 @@ var internals$jscomp$inline_1265 = {
94799479
scheduleRoot: null,
94809480
setRefreshHandler: null,
94819481
getCurrentFiber: null,
9482-
reconcilerVersion: "18.3.0-canary-e3748a0bd-20231017"
9482+
reconcilerVersion: "18.3.0-canary-20c91b653-20231018"
94839483
};
94849484
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
94859485
var hook$jscomp$inline_1266 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if (
2727
}
2828
"use strict";
2929

30-
var ReactVersion = "18.3.0-canary-e3748a0bd-20231017";
30+
var ReactVersion = "18.3.0-canary-20c91b653-20231018";
3131

3232
// ATTENTION
3333
// When adding new symbols to this file,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,4 +580,4 @@ exports.useSyncExternalStore = function (
580580
exports.useTransition = function () {
581581
return ReactCurrentDispatcher.current.useTransition();
582582
};
583-
exports.version = "18.3.0-canary-e3748a0bd-20231017";
583+
exports.version = "18.3.0-canary-20c91b653-20231018";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ exports.useSyncExternalStore = function (
583583
exports.useTransition = function () {
584584
return ReactCurrentDispatcher.current.useTransition();
585585
};
586-
exports.version = "18.3.0-canary-e3748a0bd-20231017";
586+
exports.version = "18.3.0-canary-20c91b653-20231018";
587587

588588
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
589589
if (
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e3748a0bde80dd1f097fd8000702aba9fca454ef
1+
20c91b65341fd404185fc778c6844ac29ab815d5

0 commit comments

Comments
 (0)