Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -231,6 +238,7 @@
"wise-dancers-hang",
"wise-donkeys-marry",
"wise-jobs-admire",
"wise-radios-exercise",
"witty-camels-warn",
"witty-steaks-dream"
]
Expand Down
20 changes: 20 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';