Skip to content

Commit 7e44beb

Browse files
committed
Update React from d900fadbf to 720de7f81a
1 parent e8f4e7a commit 7e44beb

File tree

80 files changed

+876
-764
lines changed

Some content is hidden

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

80 files changed

+876
-764
lines changed

package.json

Lines changed: 10 additions & 10 deletions
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:[email protected]",
196-
"react-builtin": "npm:[email protected]d900fadbf-20230929",
196+
"react-builtin": "npm:[email protected]720de7f81a-20241220",
197197
"react-dom": "18.2.0",
198198
"react-dom-17": "npm:[email protected]",
199-
"react-dom-builtin": "npm:[email protected]d900fadbf-20230929",
200-
"react-dom-experimental-builtin": "npm:[email protected]d900fadbf-20230929",
201-
"react-experimental-builtin": "npm:[email protected]d900fadbf-20230929",
202-
"react-server-dom-turbopack": "18.3.0-canary-d900fadbf-20230929",
203-
"react-server-dom-turbopack-experimental": "npm:[email protected]d900fadbf-20230929",
204-
"react-server-dom-webpack": "18.3.0-canary-d900fadbf-20230929",
205-
"react-server-dom-webpack-experimental": "npm:[email protected]d900fadbf-20230929",
199+
"react-dom-builtin": "npm:[email protected]720de7f81a-20241220",
200+
"react-dom-experimental-builtin": "npm:[email protected]720de7f81a-20241220",
201+
"react-experimental-builtin": "npm:[email protected]720de7f81a-20241220",
202+
"react-server-dom-turbopack": "18.3.0-canary-720de7f81a-20241220",
203+
"react-server-dom-turbopack-experimental": "npm:[email protected]720de7f81a-20241220",
204+
"react-server-dom-webpack": "18.3.0-canary-720de7f81a-20241220",
205+
"react-server-dom-webpack-experimental": "npm:[email protected]720de7f81a-20241220",
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:[email protected]d900fadbf-20230929",
216-
"scheduler-experimental-builtin": "npm:[email protected]d900fadbf-20230929",
215+
"scheduler-builtin": "npm:[email protected]720de7f81a-20241220",
216+
"scheduler-experimental-builtin": "npm:[email protected]720de7f81a-20241220",
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

Lines changed: 4 additions & 17 deletions
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-3cfcbc5bc-20231018';
20+
var ReactVersion = '18.3.0-experimental-720de7f81a-20241220';
2121

2222
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
2323

@@ -11264,10 +11264,7 @@ function flushCompletedQueues(request, destination) {
1126411264
} // We're done.
1126511265

1126611266

11267-
close(destination); // We need to stop flowing now because we do not want any async contexts which might call
11268-
// float methods to initiate any flushes after this point
11269-
11270-
stopFlowing(request);
11267+
close(destination);
1127111268
}
1127211269
}
1127311270
}
@@ -11287,17 +11284,10 @@ function enqueueFlush(request) {
1128711284
request.pingedTasks.length === 0 && // If there is no destination there is nothing we can flush to. A flush will
1128811285
// happen when we start flowing again
1128911286
request.destination !== null) {
11287+
var destination = request.destination;
1129011288
request.flushScheduled = true;
1129111289
scheduleWork(function () {
11292-
// We need to existence check destination again here because it might go away
11293-
// in between the enqueueFlush call and the work execution
11294-
var destination = request.destination;
11295-
11296-
if (destination) {
11297-
flushCompletedQueues(request, destination);
11298-
} else {
11299-
request.flushScheduled = false;
11300-
}
11290+
return flushCompletedQueues(request, destination);
1130111291
});
1130211292
}
1130311293
}
@@ -11327,9 +11317,6 @@ function startFlowing(request, destination) {
1132711317
fatalError(request, error);
1132811318
}
1132911319
}
11330-
function stopFlowing(request) {
11331-
request.destination = null;
11332-
} // This is called to early terminate a request. It puts all pending boundaries in client rendered state.
1133311320

1133411321
function abort(request, reason) {
1133511322
try {

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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var React = require("next/dist/compiled/react-experimental");
1818
var ReactDOM = require('react-dom');
1919
var stream = require('stream');
2020

21-
var ReactVersion = '18.3.0-experimental-3cfcbc5bc-20231018';
21+
var ReactVersion = '18.3.0-experimental-720de7f81a-20241220';
2222

2323
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
2424

@@ -11265,10 +11265,7 @@ function flushCompletedQueues(request, destination) {
1126511265
} // We're done.
1126611266

1126711267

11268-
close(destination); // We need to stop flowing now because we do not want any async contexts which might call
11269-
// float methods to initiate any flushes after this point
11270-
11271-
stopFlowing(request);
11268+
close(destination);
1127211269
}
1127311270
}
1127411271
}
@@ -11288,17 +11285,10 @@ function enqueueFlush(request) {
1128811285
request.pingedTasks.length === 0 && // If there is no destination there is nothing we can flush to. A flush will
1128911286
// happen when we start flowing again
1129011287
request.destination !== null) {
11288+
var destination = request.destination;
1129111289
request.flushScheduled = true;
1129211290
scheduleWork(function () {
11293-
// We need to existence check destination again here because it might go away
11294-
// in between the enqueueFlush call and the work execution
11295-
var destination = request.destination;
11296-
11297-
if (destination) {
11298-
flushCompletedQueues(request, destination);
11299-
} else {
11300-
request.flushScheduled = false;
11301-
}
11291+
return flushCompletedQueues(request, destination);
1130211292
});
1130311293
}
1130411294
}
@@ -11328,9 +11318,6 @@ function startFlowing(request, destination) {
1132811318
fatalError(request, error);
1132911319
}
1133011320
}
11331-
function stopFlowing(request) {
11332-
request.destination = null;
11333-
} // This is called to early terminate a request. It puts all pending boundaries in client rendered state.
1133411321

1133511322
function abort(request, reason) {
1133611323
try {

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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (process.env.NODE_ENV !== "production") {
1616

1717
var React = require("next/dist/compiled/react-experimental");
1818

19-
var ReactVersion = '18.3.0-experimental-3cfcbc5bc-20231018';
19+
var ReactVersion = '18.3.0-experimental-720de7f81a-20241220';
2020

2121
var Internals = {
2222
usingClientEntryPoint: false,

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.production.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 14 deletions
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-3cfcbc5bc-20231018';
20+
var ReactVersion = '18.3.0-experimental-720de7f81a-20241220';
2121

2222
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
2323

@@ -11320,10 +11320,7 @@ function flushCompletedQueues(request, destination) {
1132011320
} // We're done.
1132111321

1132211322

11323-
close(destination); // We need to stop flowing now because we do not want any async contexts which might call
11324-
// float methods to initiate any flushes after this point
11325-
11326-
stopFlowing(request);
11323+
close(destination);
1132711324
} else {
1132811325
completeWriting(destination);
1132911326
}
@@ -11345,17 +11342,10 @@ function enqueueFlush(request) {
1134511342
request.pingedTasks.length === 0 && // If there is no destination there is nothing we can flush to. A flush will
1134611343
// happen when we start flowing again
1134711344
request.destination !== null) {
11345+
var destination = request.destination;
1134811346
request.flushScheduled = true;
1134911347
scheduleWork(function () {
11350-
// We need to existence check destination again here because it might go away
11351-
// in between the enqueueFlush call and the work execution
11352-
var destination = request.destination;
11353-
11354-
if (destination) {
11355-
flushCompletedQueues(request, destination);
11356-
} else {
11357-
request.flushScheduled = false;
11358-
}
11348+
return flushCompletedQueues(request, destination);
1135911349
});
1136011350
}
1136111351
}

0 commit comments

Comments
 (0)