Version Packages (next) (#12082)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12077/merge svelte@5.0.0-next.159
github-actions[bot] 2 weeks ago committed by GitHub
parent fcf81b1e1d
commit 60e19c7c04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -205,6 +205,7 @@
"good-plums-type",
"good-rivers-yawn",
"good-roses-argue",
"gorgeous-hats-wonder",
"gorgeous-monkeys-carry",
"gorgeous-singers-rest",
"great-fans-unite",
@ -234,6 +235,7 @@
"honest-pans-kick",
"hot-cooks-repair",
"hot-jobs-tap",
"hot-rivers-punch",
"hot-sloths-clap",
"hungry-boxes-relate",
"hungry-dots-fry",
@ -326,6 +328,7 @@
"moody-houses-argue",
"moody-owls-cry",
"moody-sheep-type",
"moody-toys-relax",
"nasty-glasses-begin",
"nasty-lions-double",
"nasty-yaks-peel",
@ -608,6 +611,7 @@
"weak-drinks-speak",
"weak-frogs-bow",
"weak-terms-destroy",
"wet-bats-exercise",
"wet-games-fly",
"wet-pears-remain",
"wet-wombats-repeat",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.159
### Patch Changes
- fix: ensure element size bindings don't unsubscribe multiple times from the resize observer ([#12091](https://github.com/sveltejs/svelte/pull/12091))
- fix: prevent misidentification of bindings as delegatable event handlers if used outside event attribute ([#12081](https://github.com/sveltejs/svelte/pull/12081))
- fix: preserve current input values when removing defaults ([#12083](https://github.com/sveltejs/svelte/pull/12083))
- fix: preserve component function context for nested components ([#12089](https://github.com/sveltejs/svelte/pull/12089))
## 5.0.0-next.158
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.158",
"version": "5.0.0-next.159",
"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.158';
export const VERSION = '5.0.0-next.159';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save