svelte 5.39.8 → 5.39.9

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "svelte",
3
3
  "description": "Cybernetically enhanced web apps",
4
4
  "license": "MIT",
5
- "version": "5.39.8",
5
+ "version": "5.39.9",
6
6
  "type": "module",
7
7
  "types": "./types/index.d.ts",
8
8
  "engines": {
@@ -285,6 +285,13 @@ export class Boundary {
285
285
  this.#anchor.before(this.#offscreen_fragment);
286
286
  this.#offscreen_fragment = null;
287
287
  }
288
+
289
+ // TODO this feels like a little bit of a kludge, but until we
290
+ // overhaul the boundary/batch relationship it's probably
291
+ // the most pragmatic solution available to us
292
+ queue_micro_task(() => {
293
+ Batch.ensure().flush();
294
+ });
288
295
  }
289
296
  }
290
297
 
package/src/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * The current version, as set in package.json.
5
5
  * @type {string}
6
6
  */
7
- export const VERSION = '5.39.8';
7
+ export const VERSION = '5.39.9';
8
8
  export const PUBLIC_VERSION = '5';