Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update React from 2bc7d336a to ba5e6a832 #61837

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,16 @@
"random-seed": "0.3.0",
"react": "18.2.0",
"react-17": "npm:react@17.0.2",
"react-builtin": "npm:react@18.3.0-canary-2bc7d336a-20240205",
"react-builtin": "npm:react@18.3.0-canary-ba5e6a832-20240208",
"react-dom": "18.2.0",
"react-dom-17": "npm:react-dom@17.0.2",
"react-dom-builtin": "npm:react-dom@18.3.0-canary-2bc7d336a-20240205",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-2bc7d336a-20240205",
"react-experimental-builtin": "npm:react@0.0.0-experimental-2bc7d336a-20240205",
"react-server-dom-turbopack": "18.3.0-canary-2bc7d336a-20240205",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-2bc7d336a-20240205",
"react-server-dom-webpack": "18.3.0-canary-2bc7d336a-20240205",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-2bc7d336a-20240205",
"react-dom-builtin": "npm:react-dom@18.3.0-canary-ba5e6a832-20240208",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-ba5e6a832-20240208",
"react-experimental-builtin": "npm:react@0.0.0-experimental-ba5e6a832-20240208",
"react-server-dom-turbopack": "18.3.0-canary-ba5e6a832-20240208",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-ba5e6a832-20240208",
"react-server-dom-webpack": "18.3.0-canary-ba5e6a832-20240208",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-ba5e6a832-20240208",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand All @@ -217,8 +217,8 @@
"resolve-from": "5.0.0",
"sass": "1.54.0",
"satori": "0.10.9",
"scheduler-builtin": "npm:scheduler@0.24.0-canary-2bc7d336a-20240205",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-2bc7d336a-20240205",
"scheduler-builtin": "npm:scheduler@0.24.0-canary-ba5e6a832-20240208",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-ba5e6a832-20240208",
"seedrandom": "3.0.5",
"selenium-webdriver": "4.0.0-beta.4",
"semver": "7.3.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
var React = require("next/dist/compiled/react-experimental");
var ReactDOM = require('react-dom');

var ReactVersion = '18.3.0-experimental-2bc7d336a-20240205';
var ReactVersion = '18.3.0-experimental-ba5e6a832-20240208';

var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;

Expand Down Expand Up @@ -6914,7 +6914,7 @@ function reenableLogs() {

var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{
if (prefix === undefined) {
// Extract the VM specific prefix used by each line.
Expand Down Expand Up @@ -7179,12 +7179,12 @@ function describeNativeComponentFrame(fn, construct) {
return syntheticFrame;
}

function describeClassComponentFrame(ctor, source, ownerFn) {
function describeClassComponentFrame(ctor, ownerFn) {
{
return describeNativeComponentFrame(ctor, true);
}
}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{
return describeNativeComponentFrame(fn, false);
}
Expand All @@ -7195,7 +7195,7 @@ function shouldConstruct$1(Component) {
return !!(prototype && prototype.isReactComponent);
}

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

if (type == null) {
return '';
Expand Down Expand Up @@ -7226,7 +7226,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {

case REACT_MEMO_TYPE:
// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

case REACT_LAZY_TYPE:
{
Expand All @@ -7236,7 +7236,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {

try {
// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}
}
}
Expand All @@ -7252,7 +7252,7 @@ function setCurrentlyValidatingElement(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
Expand Down Expand Up @@ -9021,15 +9021,15 @@ function getStackByComponentStackNode(componentStack) {
do {
switch (node.tag) {
case 0:
info += describeBuiltInComponentFrame(node.type, null, null);
info += describeBuiltInComponentFrame(node.type, null);
break;

case 1:
info += describeFunctionComponentFrame(node.type, null, null);
info += describeFunctionComponentFrame(node.type, null);
break;

case 2:
info += describeClassComponentFrame(node.type, null, null);
info += describeClassComponentFrame(node.type, null);
break;
} // $FlowFixMe[incompatible-type] we bail out when we get a null

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function formatProdErrorMessage(code) {
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.';
}

var ReactVersion = '18.3.0-experimental-2bc7d336a-20240205';
var ReactVersion = '18.3.0-experimental-ba5e6a832-20240208';

// A pure JS implementation of a string hashing function. We do not use it for
// security or obfuscation purposes, only to create compact hashes. So we
Expand Down Expand Up @@ -5139,7 +5139,7 @@ function getComponentNameFromType(type) {
}

let prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{
if (prefix === undefined) {
// Extract the VM specific prefix used by each line.
Expand Down Expand Up @@ -5367,12 +5367,12 @@ function describeNativeComponentFrame(fn, construct) {
return syntheticFrame;
}

function describeClassComponentFrame(ctor, source, ownerFn) {
function describeClassComponentFrame(ctor, ownerFn) {
{
return describeNativeComponentFrame(ctor, true);
}
}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{
return describeNativeComponentFrame(fn, false);
}
Expand Down Expand Up @@ -6647,15 +6647,15 @@ function getStackByComponentStackNode(componentStack) {
do {
switch (node.tag) {
case 0:
info += describeBuiltInComponentFrame(node.type, null, null);
info += describeBuiltInComponentFrame(node.type, null);
break;

case 1:
info += describeFunctionComponentFrame(node.type, null, null);
info += describeFunctionComponentFrame(node.type, null);
break;

case 2:
info += describeClassComponentFrame(node.type, null, null);
info += describeClassComponentFrame(node.type, null);
break;
} // $FlowFixMe[incompatible-type] we bail out when we get a null

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var React = require("next/dist/compiled/react-experimental");
var ReactDOM = require('react-dom');
var stream = require('stream');

var ReactVersion = '18.3.0-experimental-2bc7d336a-20240205';
var ReactVersion = '18.3.0-experimental-ba5e6a832-20240208';

var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;

Expand Down Expand Up @@ -6915,7 +6915,7 @@ function reenableLogs() {

var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{
if (prefix === undefined) {
// Extract the VM specific prefix used by each line.
Expand Down Expand Up @@ -7180,12 +7180,12 @@ function describeNativeComponentFrame(fn, construct) {
return syntheticFrame;
}

function describeClassComponentFrame(ctor, source, ownerFn) {
function describeClassComponentFrame(ctor, ownerFn) {
{
return describeNativeComponentFrame(ctor, true);
}
}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{
return describeNativeComponentFrame(fn, false);
}
Expand All @@ -7196,7 +7196,7 @@ function shouldConstruct$1(Component) {
return !!(prototype && prototype.isReactComponent);
}

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

if (type == null) {
return '';
Expand Down Expand Up @@ -7227,7 +7227,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {

case REACT_MEMO_TYPE:
// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

case REACT_LAZY_TYPE:
{
Expand All @@ -7237,7 +7237,7 @@ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {

try {
// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}
}
}
Expand All @@ -7253,7 +7253,7 @@ function setCurrentlyValidatingElement(element) {
{
if (element) {
var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
} else {
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
Expand Down Expand Up @@ -9022,15 +9022,15 @@ function getStackByComponentStackNode(componentStack) {
do {
switch (node.tag) {
case 0:
info += describeBuiltInComponentFrame(node.type, null, null);
info += describeBuiltInComponentFrame(node.type, null);
break;

case 1:
info += describeFunctionComponentFrame(node.type, null, null);
info += describeFunctionComponentFrame(node.type, null);
break;

case 2:
info += describeClassComponentFrame(node.type, null, null);
info += describeClassComponentFrame(node.type, null);
break;
} // $FlowFixMe[incompatible-type] we bail out when we get a null

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var React = require("next/dist/compiled/react-experimental");
var ReactDOM = require('react-dom');
var stream = require('stream');

var ReactVersion = '18.3.0-experimental-2bc7d336a-20240205';
var ReactVersion = '18.3.0-experimental-ba5e6a832-20240208';

// A pure JS implementation of a string hashing function. We do not use it for
// security or obfuscation purposes, only to create compact hashes. So we
Expand Down Expand Up @@ -5123,7 +5123,7 @@ function getComponentNameFromType(type) {
}

let prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{
if (prefix === undefined) {
// Extract the VM specific prefix used by each line.
Expand Down Expand Up @@ -5351,12 +5351,12 @@ function describeNativeComponentFrame(fn, construct) {
return syntheticFrame;
}

function describeClassComponentFrame(ctor, source, ownerFn) {
function describeClassComponentFrame(ctor, ownerFn) {
{
return describeNativeComponentFrame(ctor, true);
}
}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{
return describeNativeComponentFrame(fn, false);
}
Expand Down Expand Up @@ -6631,15 +6631,15 @@ function getStackByComponentStackNode(componentStack) {
do {
switch (node.tag) {
case 0:
info += describeBuiltInComponentFrame(node.type, null, null);
info += describeBuiltInComponentFrame(node.type, null);
break;

case 1:
info += describeFunctionComponentFrame(node.type, null, null);
info += describeFunctionComponentFrame(node.type, null);
break;

case 2:
info += describeClassComponentFrame(node.type, null, null);
info += describeClassComponentFrame(node.type, null);
break;
} // $FlowFixMe[incompatible-type] we bail out when we get a null

Expand Down
Loading