diff --git a/.changeset/pre.json b/.changeset/pre.json index 97e7563f59ae..badbf7eb616d 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 18f1769654e1..dd4aa87d87bd 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 cd6aebc8693b..b75008ebf178 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 c8f12b393d77..51a725442226 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';