diff --git a/.changeset/pre.json b/.changeset/pre.json index d5cc7e7a4f..7fac2a799e 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -83,6 +83,7 @@ "chilled-seas-jog", "chilly-carpets-switch", "chilly-dolphins-lick", + "chilly-glasses-retire", "chilly-laws-juggle", "chilly-pans-raise", "chilly-rocks-hug", @@ -174,6 +175,7 @@ "eighty-days-cheat", "eighty-days-wave", "eighty-dragons-search", + "eighty-hornets-breathe", "eighty-lizards-notice", "eighty-mails-develop", "eleven-avocados-walk", @@ -286,6 +288,7 @@ "gentle-wasps-pull", "giant-bananas-turn", "giant-jars-applaud", + "giant-ladybugs-thank", "giant-moons-own", "giant-planets-shake", "giant-plants-grin", @@ -828,6 +831,7 @@ "tasty-cheetahs-appear", "tasty-mice-admire", "tasty-numbers-perform", + "tasty-spies-sniff", "tasty-steaks-smile", "ten-eels-move", "ten-foxes-repeat", @@ -877,6 +881,7 @@ "tidy-fans-relax", "tidy-lizards-happen", "tidy-starfishes-allow", + "tiny-ads-press", "tiny-kings-whisper", "tiny-meals-deliver", "tiny-moose-kiss", @@ -929,6 +934,7 @@ "wet-bats-exercise", "wet-donkeys-fry", "wet-games-fly", + "wet-hats-peel", "wet-pears-buy", "wet-pears-remain", "wet-wombats-repeat", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index a14dcee163..93624d9e4b 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,21 @@ # svelte +## 5.0.0-next.264 + +### Patch Changes + +- fix: exclude custom elements from HTML tree validation ([#13540](https://github.com/sveltejs/svelte/pull/13540)) + +- fix: apply class/style directives after attributes ([#13535](https://github.com/sveltejs/svelte/pull/13535)) + +- fix: make immutable option work more correctly ([#13526](https://github.com/sveltejs/svelte/pull/13526)) + +- breaking: use `` instead of `
` for style props ([#13499](https://github.com/sveltejs/svelte/pull/13499)) + +- fix: mark custom element with virtual class attribute as dynamic ([#13435](https://github.com/sveltejs/svelte/pull/13435)) + +- fix: ensure set_text applies coercion to objects before diff ([#13542](https://github.com/sveltejs/svelte/pull/13542)) + ## 5.0.0-next.263 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 7414a63414..af4bc746e5 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.263", + "version": "5.0.0-next.264", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 2b653345b5..e67dcfb305 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.263'; +export const VERSION = '5.0.0-next.264'; export const PUBLIC_VERSION = '5';