diff --git a/.changeset/pre.json b/.changeset/pre.json index 16b0497e73..4036ad42a4 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -34,6 +34,7 @@ "cool-ants-leave", "cuddly-pianos-drop", "curly-lizards-dream", + "curvy-cups-cough", "curvy-ties-shout", "dirty-bats-punch", "dirty-garlics-design", @@ -81,6 +82,7 @@ "heavy-ears-rule", "hip-balloons-begin", "honest-buses-add", + "honest-dragons-turn", "honest-icons-change", "hungry-boxes-relate", "hungry-dots-fry", @@ -102,6 +104,7 @@ "lazy-masks-sit", "lazy-months-knock", "lazy-spiders-think", + "lemon-geese-call", "lemon-geese-drum", "light-humans-hang", "light-pens-watch", @@ -145,6 +148,7 @@ "quiet-crabs-nail", "rare-pears-whisper", "real-guests-do", + "real-items-suffer", "red-doors-own", "rich-cobras-exist", "rich-sheep-burn", @@ -168,6 +172,7 @@ "shiny-shrimps-march", "short-buses-camp", "slimy-clouds-talk", + "slimy-laws-explode", "slimy-walls-draw", "slow-beds-shave", "slow-chefs-dream", @@ -189,6 +194,7 @@ "stale-comics-look", "strong-gifts-smoke", "strong-lemons-provide", + "strong-pans-doubt", "sweet-mangos-beg", "sweet-pens-sniff", "swift-donkeys-perform", @@ -200,6 +206,7 @@ "tall-mugs-buy", "tall-shrimps-worry", "tall-tigers-wait", + "tame-cycles-kneel", "tame-spies-drum", "tasty-numbers-perform", "ten-foxes-repeat", @@ -231,6 +238,7 @@ "wise-dancers-hang", "wise-donkeys-marry", "wise-jobs-admire", + "wise-radios-exercise", "witty-camels-warn", "witty-steaks-dream" ] diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index e833288432..5a19309d0d 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,25 @@ # svelte +## 5.0.0-next.42 + +### Patch Changes + +- breaking: snippets can now take multiple arguments, support default parameters. Because of this, the type signature has changed ([#9988](https://github.com/sveltejs/svelte/pull/9988)) + +- Use generic `T` as the return type for `$derived.call()` ([#10349](https://github.com/sveltejs/svelte/pull/10349)) + +- fix: replace TODO errors ([#10326](https://github.com/sveltejs/svelte/pull/10326)) + +- fix: add proper typings for `$derived.call` ([`6145be5c695a063c70944272a42d9c63fdd71d64`](https://github.com/sveltejs/svelte/commit/6145be5c695a063c70944272a42d9c63fdd71d64)) + +- fix: improve handling of unowned derived signals ([#10342](https://github.com/sveltejs/svelte/pull/10342)) + +- fix: correctly reference destructured derived binding in event handler ([#10333](https://github.com/sveltejs/svelte/pull/10333)) + +- fix: add `scrollend` event type ([#10337](https://github.com/sveltejs/svelte/pull/10337)) + +- fix: improve unstate handling of non enumerable properties ([#10348](https://github.com/sveltejs/svelte/pull/10348)) + ## 5.0.0-next.41 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 01c0369a11..aa4ce86862 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.41", + "version": "5.0.0-next.42", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 5214117f0e..b48f2a941a 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.41'; +export const VERSION = '5.0.0-next.42'; export const PUBLIC_VERSION = '5';