react-server-dom-parcel 19.1.3 → 19.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2665,10 +2665,10 @@
2665
2665
  return hook.checkDCE ? !0 : !1;
2666
2666
  })({
2667
2667
  bundleType: 1,
2668
- version: "19.1.3",
2668
+ version: "19.1.4",
2669
2669
  rendererPackageName: "react-server-dom-parcel",
2670
2670
  currentDispatcherRef: ReactSharedInternals,
2671
- reconcilerVersion: "19.1.3",
2671
+ reconcilerVersion: "19.1.4",
2672
2672
  getCurrentComponentInfo: function () {
2673
2673
  return currentOwnerInDEV;
2674
2674
  }
@@ -3909,11 +3909,12 @@
3909
3909
  case "fulfilled":
3910
3910
  if ("function" === typeof resolve) {
3911
3911
  for (
3912
- var inspectedValue = this.value;
3912
+ var inspectedValue = this.value, cycleProtection = 0;
3913
3913
  inspectedValue instanceof ReactPromise;
3914
3914
 
3915
3915
  ) {
3916
- if (inspectedValue === this) {
3916
+ cycleProtection++;
3917
+ if (inspectedValue === this || 1e3 < cycleProtection) {
3917
3918
  "function" === typeof reject &&
3918
3919
  reject(Error("Cannot have cyclic thenables."));
3919
3920
  return;
@@ -1794,11 +1794,12 @@ ReactPromise.prototype.then = function (resolve, reject) {
1794
1794
  case "fulfilled":
1795
1795
  if ("function" === typeof resolve) {
1796
1796
  for (
1797
- var inspectedValue = this.value;
1797
+ var inspectedValue = this.value, cycleProtection = 0;
1798
1798
  inspectedValue instanceof ReactPromise;
1799
1799
 
1800
1800
  ) {
1801
- if (inspectedValue === this) {
1801
+ cycleProtection++;
1802
+ if (inspectedValue === this || 1e3 < cycleProtection) {
1802
1803
  "function" === typeof reject &&
1803
1804
  reject(Error("Cannot have cyclic thenables."));
1804
1805
  return;
@@ -3991,11 +3991,12 @@
3991
3991
  case "fulfilled":
3992
3992
  if ("function" === typeof resolve) {
3993
3993
  for (
3994
- var inspectedValue = this.value;
3994
+ var inspectedValue = this.value, cycleProtection = 0;
3995
3995
  inspectedValue instanceof ReactPromise;
3996
3996
 
3997
3997
  ) {
3998
- if (inspectedValue === this) {
3998
+ cycleProtection++;
3999
+ if (inspectedValue === this || 1e3 < cycleProtection) {
3999
4000
  "function" === typeof reject &&
4000
4001
  reject(Error("Cannot have cyclic thenables."));
4001
4002
  return;
@@ -1805,11 +1805,12 @@ ReactPromise.prototype.then = function (resolve, reject) {
1805
1805
  case "fulfilled":
1806
1806
  if ("function" === typeof resolve) {
1807
1807
  for (
1808
- var inspectedValue = this.value;
1808
+ var inspectedValue = this.value, cycleProtection = 0;
1809
1809
  inspectedValue instanceof ReactPromise;
1810
1810
 
1811
1811
  ) {
1812
- if (inspectedValue === this) {
1812
+ cycleProtection++;
1813
+ if (inspectedValue === this || 1e3 < cycleProtection) {
1813
1814
  "function" === typeof reject &&
1814
1815
  reject(Error("Cannot have cyclic thenables."));
1815
1816
  return;
@@ -3990,11 +3990,12 @@
3990
3990
  case "fulfilled":
3991
3991
  if ("function" === typeof resolve) {
3992
3992
  for (
3993
- var inspectedValue = this.value;
3993
+ var inspectedValue = this.value, cycleProtection = 0;
3994
3994
  inspectedValue instanceof ReactPromise;
3995
3995
 
3996
3996
  ) {
3997
- if (inspectedValue === this) {
3997
+ cycleProtection++;
3998
+ if (inspectedValue === this || 1e3 < cycleProtection) {
3998
3999
  "function" === typeof reject &&
3999
4000
  reject(Error("Cannot have cyclic thenables."));
4000
4001
  return;
@@ -1830,11 +1830,12 @@ ReactPromise.prototype.then = function (resolve, reject) {
1830
1830
  case "fulfilled":
1831
1831
  if ("function" === typeof resolve) {
1832
1832
  for (
1833
- var inspectedValue = this.value;
1833
+ var inspectedValue = this.value, cycleProtection = 0;
1834
1834
  inspectedValue instanceof ReactPromise;
1835
1835
 
1836
1836
  ) {
1837
- if (inspectedValue === this) {
1837
+ cycleProtection++;
1838
+ if (inspectedValue === this || 1e3 < cycleProtection) {
1838
1839
  "function" === typeof reject &&
1839
1840
  reject(Error("Cannot have cyclic thenables."));
1840
1841
  return;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-server-dom-parcel",
3
3
  "description": "React Server Components bindings for DOM using Parcel. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
4
- "version": "19.1.3",
4
+ "version": "19.1.4",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -78,7 +78,7 @@
78
78
  "node": ">=0.10.0"
79
79
  },
80
80
  "peerDependencies": {
81
- "react": "^19.1.3",
82
- "react-dom": "^19.1.3"
81
+ "react": "^19.1.4",
82
+ "react-dom": "^19.1.4"
83
83
  }
84
84
  }