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] 7 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", "cool-ants-leave",
"cuddly-pianos-drop", "cuddly-pianos-drop",
"curly-lizards-dream", "curly-lizards-dream",
"curvy-cups-cough",
"curvy-ties-shout", "curvy-ties-shout",
"dirty-bats-punch", "dirty-bats-punch",
"dirty-garlics-design", "dirty-garlics-design",
@ -81,6 +82,7 @@
"heavy-ears-rule", "heavy-ears-rule",
"hip-balloons-begin", "hip-balloons-begin",
"honest-buses-add", "honest-buses-add",
"honest-dragons-turn",
"honest-icons-change", "honest-icons-change",
"hungry-boxes-relate", "hungry-boxes-relate",
"hungry-dots-fry", "hungry-dots-fry",
@ -102,6 +104,7 @@
"lazy-masks-sit", "lazy-masks-sit",
"lazy-months-knock", "lazy-months-knock",
"lazy-spiders-think", "lazy-spiders-think",
"lemon-geese-call",
"lemon-geese-drum", "lemon-geese-drum",
"light-humans-hang", "light-humans-hang",
"light-pens-watch", "light-pens-watch",
@ -145,6 +148,7 @@
"quiet-crabs-nail", "quiet-crabs-nail",
"rare-pears-whisper", "rare-pears-whisper",
"real-guests-do", "real-guests-do",
"real-items-suffer",
"red-doors-own", "red-doors-own",
"rich-cobras-exist", "rich-cobras-exist",
"rich-sheep-burn", "rich-sheep-burn",
@ -168,6 +172,7 @@
"shiny-shrimps-march", "shiny-shrimps-march",
"short-buses-camp", "short-buses-camp",
"slimy-clouds-talk", "slimy-clouds-talk",
"slimy-laws-explode",
"slimy-walls-draw", "slimy-walls-draw",
"slow-beds-shave", "slow-beds-shave",
"slow-chefs-dream", "slow-chefs-dream",
@ -189,6 +194,7 @@
"stale-comics-look", "stale-comics-look",
"strong-gifts-smoke", "strong-gifts-smoke",
"strong-lemons-provide", "strong-lemons-provide",
"strong-pans-doubt",
"sweet-mangos-beg", "sweet-mangos-beg",
"sweet-pens-sniff", "sweet-pens-sniff",
"swift-donkeys-perform", "swift-donkeys-perform",
@ -200,6 +206,7 @@
"tall-mugs-buy", "tall-mugs-buy",
"tall-shrimps-worry", "tall-shrimps-worry",
"tall-tigers-wait", "tall-tigers-wait",
"tame-cycles-kneel",
"tame-spies-drum", "tame-spies-drum",
"tasty-numbers-perform", "tasty-numbers-perform",
"ten-foxes-repeat", "ten-foxes-repeat",
@ -231,6 +238,7 @@
"wise-dancers-hang", "wise-dancers-hang",
"wise-donkeys-marry", "wise-donkeys-marry",
"wise-jobs-admire", "wise-jobs-admire",
"wise-radios-exercise",
"witty-camels-warn", "witty-camels-warn",
"witty-steaks-dream" "witty-steaks-dream"
] ]

@ -1,5 +1,25 @@
# svelte # 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 ## 5.0.0-next.41
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.41", "version": "5.0.0-next.42",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.41'; export const VERSION = '5.0.0-next.42';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save