From d7cf76bbb6b9f38048f5f2217b5226d144c328a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 08:46:12 -0700 Subject: [PATCH] Version Packages (next) (#13640) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 7 +++++++ packages/svelte/CHANGELOG.md | 18 ++++++++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 4 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 97e7563f59..badbf7eb61 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -171,6 +171,7 @@ "eight-cougars-watch", "eight-hornets-punch", "eight-jeans-compare", + "eight-pans-worry", "eight-pianos-raise", "eight-steaks-shout", "eight-waves-mate", @@ -246,6 +247,7 @@ "fluffy-kings-complain", "fluffy-ravens-juggle", "forty-bikes-buy", + "forty-chicken-heal", "forty-comics-invent", "forty-dogs-divide", "forty-dolls-wave", @@ -345,6 +347,7 @@ "healthy-dancers-play", "healthy-mangos-brush", "healthy-planes-vanish", + "healthy-poets-float", "healthy-zebras-accept", "heavy-cars-ring", "heavy-comics-move", @@ -400,6 +403,7 @@ "khaki-ligers-sing", "khaki-mails-draw", "khaki-mails-scream", + "khaki-mirrors-warn", "khaki-monkeys-cry", "khaki-moose-arrive", "khaki-tomatoes-rule", @@ -433,6 +437,7 @@ "lemon-meals-appear", "lemon-trees-act", "light-badgers-glow", + "light-crews-deny", "light-days-clean", "light-hounds-carry", "light-humans-hang", @@ -497,6 +502,7 @@ "moody-houses-argue", "moody-lions-watch", "moody-owls-cry", + "moody-pugs-tan", "moody-sheep-type", "moody-toys-relax", "nasty-carrots-develop", @@ -606,6 +612,7 @@ "popular-apes-bathe", "popular-cameras-tie", "popular-cups-bathe", + "popular-dolphins-shake", "popular-feet-rule", "popular-games-hug", "popular-ligers-perform", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 18f1769654..dd4aa87d87 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,23 @@ # svelte +## 5.0.0-next.269 + +### Patch Changes + +- fix: transitions within dynamic components now function correctly ([#13646](https://github.com/sveltejs/svelte/pull/13646)) + +- fix: use `internal_set` in `await` block ([#13642](https://github.com/sveltejs/svelte/pull/13642)) + +- fix: correctly applies autofocus to static elements ([#13648](https://github.com/sveltejs/svelte/pull/13648)) + +- fix: `method` attribute is case insensitive ([#13639](https://github.com/sveltejs/svelte/pull/13639)) + +- chore: avoid reporting inspections when an exception occurs ([#13601](https://github.com/sveltejs/svelte/pull/13601)) + +- fix: ensure legacy run utility does not cause cycles ([#13643](https://github.com/sveltejs/svelte/pull/13643)) + +- fix: better migration for leading and trailing comments ([#13630](https://github.com/sveltejs/svelte/pull/13630)) + ## 5.0.0-next.268 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index cd6aebc869..b75008ebf1 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -2,7 +2,7 @@ "name": "svelte", "description": "Cybernetically enhanced web apps", "license": "MIT", - "version": "5.0.0-next.268", + "version": "5.0.0-next.269", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index c8f12b393d..51a7254422 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '5.0.0-next.268'; +export const VERSION = '5.0.0-next.269'; export const PUBLIC_VERSION = '5';