vue 3.2.42 → 3.2.43

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.
@@ -3353,7 +3353,7 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
3353
3353
  // pass undefined as the old value when it's changed for the first time
3354
3354
  oldValue === INITIAL_WATCHER_VALUE ||
3355
3355
  (isMultiSource && oldValue[0] === INITIAL_WATCHER_VALUE)
3356
- ? undefined
3356
+ ? []
3357
3357
  : oldValue,
3358
3358
  onCleanup
3359
3359
  ]);
@@ -9126,7 +9126,7 @@ const useSSRContext = () => {
9126
9126
  const ctx = inject(ssrContextKey);
9127
9127
  if (!ctx) {
9128
9128
  warn$1(`Server rendering context not provided. Make sure to only call ` +
9129
- `useSSRContext() conditionally in the server build.`);
9129
+ `useSSRContext() conditionally in the server build.`);
9130
9130
  }
9131
9131
  return ctx;
9132
9132
  }
@@ -9349,7 +9349,7 @@ function isMemoSame(cached, memo) {
9349
9349
  }
9350
9350
 
9351
9351
  // Core API ------------------------------------------------------------------
9352
- const version = "3.2.42";
9352
+ const version = "3.2.43";
9353
9353
  /**
9354
9354
  * SSR utils for \@vue/server-renderer. Only exposed in ssr-possible builds.
9355
9355
  * @internal