Version Packages (next) (#10327)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10354/head svelte@5.0.0-next.42
github-actions[bot] 6 months ago committed by GitHub
parent dcfae026da
commit c0f280c7e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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"
]

@ -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

@ -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": {

@ -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';

Loading…
Cancel
Save