diff --git a/.changeset/pre.json b/.changeset/pre.json index 66eb73639..f7bb67209 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -40,6 +40,7 @@ "brave-walls-flow", "breezy-carrots-flash", "breezy-rules-beg", + "breezy-waves-camp", "bright-falcons-float", "bright-peas-juggle", "bright-snakes-sing", @@ -92,6 +93,7 @@ "cyan-flowers-destroy", "cyan-spies-grin", "cyan-squids-drive", + "cyan-toes-share", "dirty-bats-punch", "dirty-donuts-yell", "dirty-eyes-itch", @@ -137,6 +139,7 @@ "famous-kiwis-thank", "famous-knives-sneeze", "famous-pants-pay", + "fast-donkeys-pay", "fast-penguins-matter", "fast-weeks-clean", "few-clouds-shop", @@ -147,6 +150,7 @@ "fifty-rice-wait", "fifty-steaks-float", "five-tigers-search", + "flat-ghosts-fly", "flat-melons-protect", "flat-olives-live", "fluffy-dolls-share", @@ -168,6 +172,7 @@ "fresh-weeks-trade", "friendly-candles-relate", "friendly-lies-camp", + "funny-dragons-double", "funny-ties-jump", "funny-trees-cry", "funny-wombats-argue", @@ -263,6 +268,7 @@ "lazy-spiders-think", "lemon-geese-call", "lemon-geese-drum", + "lemon-meals-appear", "lemon-trees-act", "light-badgers-glow", "light-days-clean", @@ -466,6 +472,7 @@ "smart-cherries-leave", "smart-grapes-mate", "smart-parents-swim", + "smart-spiders-fetch", "smart-turkeys-tell", "smart-zebras-pay", "smooth-kids-protect", @@ -482,7 +489,9 @@ "sour-rules-march", "sour-weeks-fix", "spicy-jeans-deliver", + "spicy-peas-vanish", "spicy-plums-admire", + "spotty-crabs-give", "spotty-houses-search", "spotty-pens-agree", "spotty-rocks-destroy", @@ -534,6 +543,7 @@ "thick-swans-type", "thin-colts-yawn", "thin-foxes-lick", + "thin-spoons-float", "thin-years-rhyme", "thirty-flowers-sit", "thirty-ghosts-fix", @@ -556,9 +566,11 @@ "tiny-kings-whisper", "tiny-meals-deliver", "tiny-moose-kiss", + "tiny-taxis-whisper", "tough-radios-punch", "tough-tomatoes-explain", "twelve-beans-drive", + "twelve-cows-learn", "twelve-dragons-join", "twelve-onions-juggle", "twelve-worms-jog", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index d0b85f314..d8ca44370 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,33 @@ # svelte +## 5.0.0-next.152 + +### Patch Changes + +- fix: validate form inside a form ([#11947](https://github.com/sveltejs/svelte/pull/11947)) + +- fix: more robust handling of events in spread attributes ([#11942](https://github.com/sveltejs/svelte/pull/11942)) + +- feat: simpler ` hydration ([#11773](https://github.com/sveltejs/svelte/pull/11773)) + +- fix: make `legacy.componentApi` option more visible ([#11924](https://github.com/sveltejs/svelte/pull/11924)) + +- feat: simpler hydration of CSS custom property wrappers ([#11948](https://github.com/sveltejs/svelte/pull/11948)) + +- chore: optimise effects that only exist to return a teardown ([#11936](https://github.com/sveltejs/svelte/pull/11936)) + +- feat: always create wrapper `
` for `` with CSS custom properties ([#11792](https://github.com/sveltejs/svelte/pull/11792)) + +- feat: add svelte/events package and export `on` function ([#11912](https://github.com/sveltejs/svelte/pull/11912)) + +- feat: more efficient output for attributes in SSR ([#11949](https://github.com/sveltejs/svelte/pull/11949)) + +- fix: update reactive set when deleting initial values ([#11967](https://github.com/sveltejs/svelte/pull/11967)) + +- feat: simpler string normalization ([#11954](https://github.com/sveltejs/svelte/pull/11954)) + +- fix: always assign text.nodeValue ([#11944](https://github.com/sveltejs/svelte/pull/11944)) + ## 5.0.0-next.151 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 62a8af6db..d484982a9 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.151", + "version": "5.0.0-next.152", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 7beb11879..dbb208b8a 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.151'; +export const VERSION = '5.0.0-next.152'; export const PUBLIC_VERSION = '5';