@vue/runtime-core 3.4.20 → 3.4.21

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.20
2
+ * @vue/runtime-core v3.4.21
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -28,7 +28,10 @@ function warn$1(msg, ...args) {
28
28
  instance,
29
29
  11,
30
30
  [
31
- msg + args.join(""),
31
+ msg + args.map((a) => {
32
+ var _a, _b;
33
+ return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
34
+ }).join(""),
32
35
  instance && instance.proxy,
33
36
  trace.map(
34
37
  ({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`
@@ -1195,7 +1198,7 @@ const SuspenseImpl = {
1195
1198
  rendererInternals
1196
1199
  );
1197
1200
  } else {
1198
- if (parentSuspense && parentSuspense.deps > 0) {
1201
+ if (parentSuspense && parentSuspense.deps > 0 && !n1.suspense.isInFallback) {
1199
1202
  n2.suspense = n1.suspense;
1200
1203
  n2.suspense.vnode = n2;
1201
1204
  n2.el = n1.el;
@@ -8073,7 +8076,7 @@ function isMemoSame(cached, memo) {
8073
8076
  return true;
8074
8077
  }
8075
8078
 
8076
- const version = "3.4.20";
8079
+ const version = "3.4.21";
8077
8080
  const warn = warn$1 ;
8078
8081
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8079
8082
  const devtools = devtools$1 ;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.20
2
+ * @vue/runtime-core v3.4.21
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -689,7 +689,7 @@ const SuspenseImpl = {
689
689
  rendererInternals
690
690
  );
691
691
  } else {
692
- if (parentSuspense && parentSuspense.deps > 0) {
692
+ if (parentSuspense && parentSuspense.deps > 0 && !n1.suspense.isInFallback) {
693
693
  n2.suspense = n1.suspense;
694
694
  n2.suspense.vnode = n2;
695
695
  n2.el = n1.el;
@@ -6276,7 +6276,7 @@ function isMemoSame(cached, memo) {
6276
6276
  return true;
6277
6277
  }
6278
6278
 
6279
- const version = "3.4.20";
6279
+ const version = "3.4.21";
6280
6280
  const warn$1 = shared.NOOP;
6281
6281
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
6282
6282
  const devtools = void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.20
2
+ * @vue/runtime-core v3.4.21
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -26,7 +26,10 @@ function warn$1(msg, ...args) {
26
26
  instance,
27
27
  11,
28
28
  [
29
- msg + args.join(""),
29
+ msg + args.map((a) => {
30
+ var _a, _b;
31
+ return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
32
+ }).join(""),
30
33
  instance && instance.proxy,
31
34
  trace.map(
32
35
  ({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`
@@ -1197,7 +1200,7 @@ const SuspenseImpl = {
1197
1200
  rendererInternals
1198
1201
  );
1199
1202
  } else {
1200
- if (parentSuspense && parentSuspense.deps > 0) {
1203
+ if (parentSuspense && parentSuspense.deps > 0 && !n1.suspense.isInFallback) {
1201
1204
  n2.suspense = n1.suspense;
1202
1205
  n2.suspense.vnode = n2;
1203
1206
  n2.el = n1.el;
@@ -8145,7 +8148,7 @@ function isMemoSame(cached, memo) {
8145
8148
  return true;
8146
8149
  }
8147
8150
 
8148
- const version = "3.4.20";
8151
+ const version = "3.4.21";
8149
8152
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
8150
8153
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8151
8154
  const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.4.20",
3
+ "version": "3.4.21",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
- "@vue/shared": "3.4.20",
50
- "@vue/reactivity": "3.4.20"
49
+ "@vue/shared": "3.4.21",
50
+ "@vue/reactivity": "3.4.21"
51
51
  }
52
52
  }