Skip to content

Commit eb79555

Browse files
authored
Updated React from 7508dcd5c to 746890329 (#58233)
Updated React from 7508dcd5c to 746890329. - facebook/react#27674
1 parent bcef6d6 commit eb79555

File tree

71 files changed

+357
-376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+357
-376
lines changed

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,16 @@
193193
"random-seed": "0.3.0",
194194
"react": "18.2.0",
195195
"react-17": "npm:react@17.0.2",
196-
"react-builtin": "npm:react@18.3.0-canary-7508dcd5c-20231108",
196+
"react-builtin": "npm:react@18.3.0-canary-746890329-20231108",
197197
"react-dom": "18.2.0",
198198
"react-dom-17": "npm:react-dom@17.0.2",
199-
"react-dom-builtin": "npm:react-dom@18.3.0-canary-7508dcd5c-20231108",
200-
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-7508dcd5c-20231108",
201-
"react-experimental-builtin": "npm:react@0.0.0-experimental-7508dcd5c-20231108",
202-
"react-server-dom-turbopack": "18.3.0-canary-7508dcd5c-20231108",
203-
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-7508dcd5c-20231108",
204-
"react-server-dom-webpack": "18.3.0-canary-7508dcd5c-20231108",
205-
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-7508dcd5c-20231108",
199+
"react-dom-builtin": "npm:react-dom@18.3.0-canary-746890329-20231108",
200+
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-746890329-20231108",
201+
"react-experimental-builtin": "npm:react@0.0.0-experimental-746890329-20231108",
202+
"react-server-dom-turbopack": "18.3.0-canary-746890329-20231108",
203+
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-746890329-20231108",
204+
"react-server-dom-webpack": "18.3.0-canary-746890329-20231108",
205+
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-746890329-20231108",
206206
"react-ssr-prepass": "1.0.8",
207207
"react-virtualized": "9.22.3",
208208
"relay-compiler": "13.0.2",
@@ -212,8 +212,8 @@
212212
"resolve-from": "5.0.0",
213213
"sass": "1.54.0",
214214
"satori": "0.10.6",
215-
"scheduler-builtin": "npm:scheduler@0.24.0-canary-7508dcd5c-20231108",
216-
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-7508dcd5c-20231108",
215+
"scheduler-builtin": "npm:scheduler@0.24.0-canary-746890329-20231108",
216+
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-746890329-20231108",
217217
"seedrandom": "3.0.5",
218218
"selenium-webdriver": "4.0.0-beta.4",
219219
"semver": "7.3.7",

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js

+6-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
1717
var React = require("next/dist/compiled/react-experimental");
1818
var ReactDOM = require('react-dom');
1919

20-
var ReactVersion = '18.3.0-experimental-7508dcd5c-20231108';
20+
var ReactVersion = '18.3.0-experimental-746890329-20231108';
2121

2222
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
2323

@@ -4415,10 +4415,7 @@ function pushEndInstance(target, type, props, resumableState, formatContext) {
44154415
target.push(endChunkForTag(type));
44164416
}
44174417

4418-
function writeBootstrap(destination, renderState, resumableState) {
4419-
resumableState.bootstrapScriptContent = undefined;
4420-
resumableState.bootstrapScripts = undefined;
4421-
resumableState.bootstrapModules = undefined;
4418+
function writeBootstrap(destination, renderState) {
44224419
var bootstrapChunks = renderState.bootstrapChunks;
44234420
var i = 0;
44244421

@@ -4435,8 +4432,8 @@ function writeBootstrap(destination, renderState, resumableState) {
44354432
return true;
44364433
}
44374434

4438-
function writeCompletedRoot(destination, renderState, resumableState) {
4439-
return writeBootstrap(destination, renderState, resumableState);
4435+
function writeCompletedRoot(destination, renderState) {
4436+
return writeBootstrap(destination, renderState);
44404437
} // Structural Nodes
44414438
// A placeholder is a node inside a hidden partial tree that can be filled in later, but before
44424439
// display. It's never visible to users. We use the template tag because it can be used in every
@@ -4793,7 +4790,7 @@ function writeCompletedBoundaryInstruction(destination, resumableState, renderSt
47934790
writeMore = writeChunkAndReturn(destination, completeBoundaryDataEnd);
47944791
}
47954792

4796-
return writeBootstrap(destination, renderState, resumableState) && writeMore;
4793+
return writeBootstrap(destination, renderState) && writeMore;
47974794
}
47984795
var clientRenderScript1Full = stringToPrecomputedChunk(clientRenderBoundary + ';$RX("');
47994796
var clientRenderScript1Partial = stringToPrecomputedChunk('$RX("');
@@ -11691,7 +11688,7 @@ function flushCompletedQueues(request, destination) {
1169111688

1169211689
flushSegment(request, destination, completedRootSegment);
1169311690
request.completedRootSegment = null;
11694-
writeCompletedRoot(destination, request.renderState, request.resumableState);
11691+
writeCompletedRoot(destination, request.renderState);
1169511692
} else {
1169611693
// We haven't flushed the root yet so we don't need to check any other branches further down
1169711694
return;

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js

+6-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function formatProdErrorMessage(code) {
2525
return "Minified React error #" + code + "; visit " + url + " for the full message or " + 'use the non-minified dev environment for full errors and additional ' + 'helpful warnings.';
2626
}
2727

28-
var ReactVersion = '18.3.0-experimental-7508dcd5c-20231108';
28+
var ReactVersion = '18.3.0-experimental-746890329-20231108';
2929

3030
// A pure JS implementation of a string hashing function. We do not use it for
3131
// security or obfuscation purposes, only to create compact hashes. So we
@@ -2820,10 +2820,7 @@ function pushEndInstance(target, type, props, resumableState, formatContext) {
28202820
target.push(endChunkForTag(type));
28212821
}
28222822

2823-
function writeBootstrap(destination, renderState, resumableState) {
2824-
resumableState.bootstrapScriptContent = undefined;
2825-
resumableState.bootstrapScripts = undefined;
2826-
resumableState.bootstrapModules = undefined;
2823+
function writeBootstrap(destination, renderState) {
28272824
const bootstrapChunks = renderState.bootstrapChunks;
28282825
let i = 0;
28292826

@@ -2840,8 +2837,8 @@ function writeBootstrap(destination, renderState, resumableState) {
28402837
return true;
28412838
}
28422839

2843-
function writeCompletedRoot(destination, renderState, resumableState) {
2844-
return writeBootstrap(destination, renderState, resumableState);
2840+
function writeCompletedRoot(destination, renderState) {
2841+
return writeBootstrap(destination, renderState);
28452842
} // Structural Nodes
28462843
// A placeholder is a node inside a hidden partial tree that can be filled in later, but before
28472844
// display. It's never visible to users. We use the template tag because it can be used in every
@@ -3182,7 +3179,7 @@ function writeCompletedBoundaryInstruction(destination, resumableState, renderSt
31823179
writeMore = writeChunkAndReturn(destination, completeBoundaryDataEnd);
31833180
}
31843181

3185-
return writeBootstrap(destination, renderState, resumableState) && writeMore;
3182+
return writeBootstrap(destination, renderState) && writeMore;
31863183
}
31873184
const clientRenderScript1Full = stringToPrecomputedChunk(clientRenderBoundary + ';$RX("');
31883185
const clientRenderScript1Partial = stringToPrecomputedChunk('$RX("');
@@ -8588,7 +8585,7 @@ function flushCompletedQueues(request, destination) {
85888585

85898586
flushSegment(request, destination, completedRootSegment);
85908587
request.completedRootSegment = null;
8591-
writeCompletedRoot(destination, request.renderState, request.resumableState);
8588+
writeCompletedRoot(destination, request.renderState);
85928589
} else {
85938590
// We haven't flushed the root yet so we don't need to check any other branches further down
85948591
return;

0 commit comments

Comments
 (0)