Version Packages (next) (#10539)

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

@ -78,6 +78,7 @@
"fluffy-dolls-share", "fluffy-dolls-share",
"fluffy-humans-worry", "fluffy-humans-worry",
"forty-comics-invent", "forty-comics-invent",
"forty-dogs-divide",
"forty-dolls-wave", "forty-dolls-wave",
"forty-peaches-unite", "forty-peaches-unite",
"forty-suns-smile", "forty-suns-smile",
@ -98,8 +99,10 @@
"great-icons-retire", "great-icons-retire",
"green-eggs-approve", "green-eggs-approve",
"green-hounds-play", "green-hounds-play",
"green-tigers-judge",
"happy-suits-film", "happy-suits-film",
"healthy-planes-vanish", "healthy-planes-vanish",
"heavy-comics-move",
"heavy-ears-rule", "heavy-ears-rule",
"hip-balloons-begin", "hip-balloons-begin",
"honest-buses-add", "honest-buses-add",
@ -127,6 +130,7 @@
"lazy-spiders-think", "lazy-spiders-think",
"lemon-geese-call", "lemon-geese-call",
"lemon-geese-drum", "lemon-geese-drum",
"light-days-clean",
"light-humans-hang", "light-humans-hang",
"light-pens-watch", "light-pens-watch",
"long-buckets-lay", "long-buckets-lay",
@ -141,10 +145,12 @@
"lucky-toes-begin", "lucky-toes-begin",
"many-trees-fix", "many-trees-fix",
"mighty-files-hammer", "mighty-files-hammer",
"moody-carrots-lay",
"moody-frogs-exist", "moody-frogs-exist",
"moody-owls-cry", "moody-owls-cry",
"nasty-lions-double", "nasty-lions-double",
"nasty-yaks-peel", "nasty-yaks-peel",
"neat-boats-shake",
"neat-dingos-clap", "neat-dingos-clap",
"nervous-spoons-relax", "nervous-spoons-relax",
"new-boats-wait", "new-boats-wait",
@ -198,6 +204,7 @@
"seven-hornets-smile", "seven-hornets-smile",
"seven-jobs-sniff", "seven-jobs-sniff",
"seven-ravens-check", "seven-ravens-check",
"shaggy-cameras-live",
"sharp-gorillas-impress", "sharp-gorillas-impress",
"sharp-kids-happen", "sharp-kids-happen",
"sharp-tomatoes-learn", "sharp-tomatoes-learn",
@ -288,6 +295,8 @@
"wise-jobs-admire", "wise-jobs-admire",
"wise-radios-exercise", "wise-radios-exercise",
"witty-camels-warn", "witty-camels-warn",
"witty-steaks-dream" "witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash"
] ]
} }

@ -1,5 +1,27 @@
# svelte # svelte
## 5.0.0-next.61
### Patch Changes
- fix: improve each block item equality for immutable mode ([#10537](https://github.com/sveltejs/svelte/pull/10537))
- fix: improve handling of unowned derived signals ([#10565](https://github.com/sveltejs/svelte/pull/10565))
- fix: better handling of empty text node hydration ([#10545](https://github.com/sveltejs/svelte/pull/10545))
- fix: ensure update methods of actions and reactive statements work with fine-grained `$state` ([#10543](https://github.com/sveltejs/svelte/pull/10543))
- fix: don't execute scripts inside `@html` when instantiated on the client ([#10556](https://github.com/sveltejs/svelte/pull/10556))
- fix: only escape characters in SSR template ([#10555](https://github.com/sveltejs/svelte/pull/10555))
- fix: wire up `events` in `mount` correctly and fix its types ([#10553](https://github.com/sveltejs/svelte/pull/10553))
- fix: better handling of derived signals that have no dependencies ([#10558](https://github.com/sveltejs/svelte/pull/10558))
- fix: improve state store mutation compiler output ([#10561](https://github.com/sveltejs/svelte/pull/10561))
## 5.0.0-next.60 ## 5.0.0-next.60
### 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.60", "version": "5.0.0-next.61",
"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.60'; export const VERSION = '5.0.0-next.61';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save