vue 3.4.13 → 3.4.14

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.
package/dist/vue.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.13
2
+ * vue v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.13
2
+ * vue v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.13
2
+ * vue v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -630,7 +630,7 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
630
630
  if (dep.get(effect2) !== effect2._trackId) {
631
631
  continue;
632
632
  }
633
- if (effect2._dirtyLevel < dirtyLevel) {
633
+ if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
634
634
  const lastDirtyLevel = effect2._dirtyLevel;
635
635
  effect2._dirtyLevel = dirtyLevel;
636
636
  if (lastDirtyLevel === 0) {
@@ -9566,7 +9566,7 @@ function isMemoSame(cached, memo) {
9566
9566
  return true;
9567
9567
  }
9568
9568
 
9569
- const version = "3.4.13";
9569
+ const version = "3.4.14";
9570
9570
  const warn = warn$1 ;
9571
9571
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
9572
9572
  const devtools = devtools$1 ;