diff --git a/.changeset/pre.json b/.changeset/pre.json index 37a6222fe125..48ab1d580815 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -164,6 +164,7 @@ "famous-pants-pay", "fast-donkeys-pay", "fast-penguins-matter", + "fast-toes-act", "fast-weeks-clean", "few-badgers-guess", "few-cheetahs-taste", @@ -258,6 +259,7 @@ "heavy-doors-applaud", "heavy-ducks-leave", "heavy-ears-rule", + "heavy-feet-attend", "hip-balloons-begin", "hip-garlics-tap", "hip-months-breathe", @@ -374,6 +376,7 @@ "moody-owls-cry", "moody-sheep-type", "moody-toys-relax", + "nasty-carrots-develop", "nasty-glasses-begin", "nasty-lions-double", "nasty-yaks-peel", @@ -440,6 +443,7 @@ "poor-seahorses-flash", "popular-apes-bathe", "popular-cameras-tie", + "popular-cups-bathe", "popular-feet-rule", "popular-games-hug", "popular-ligers-perform", @@ -510,6 +514,7 @@ "sharp-kids-happen", "sharp-tomatoes-learn", "shiny-baboons-play", + "shiny-kangaroos-move", "shiny-mayflies-clean", "shiny-melons-love", "shiny-months-tease", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 1aa45231f402..02b5dc61bd2b 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,19 @@ # svelte +## 5.0.0-next.191 + +### Patch Changes + +- fix: properly assign trailing comments ([#12471](https://github.com/sveltejs/svelte/pull/12471)) + +- breaking: remove deep reactivity from non-bindable props ([#12484](https://github.com/sveltejs/svelte/pull/12484)) + +- fix: ensure async initial store value is noticed ([#12486](https://github.com/sveltejs/svelte/pull/12486)) + +- fix: don't add imports to hoisted event parameters ([#12493](https://github.com/sveltejs/svelte/pull/12493)) + +- fix: set `volume` through DOM property rather than attribute ([#12485](https://github.com/sveltejs/svelte/pull/12485)) + ## 5.0.0-next.190 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index e000f5bb15e1..b9870073420c 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.190", + "version": "5.0.0-next.191", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index d4cb2889f84e..2be47b77fe9a 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.190'; +export const VERSION = '5.0.0-next.191'; export const PUBLIC_VERSION = '5';