Version Packages (next) (#9607)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9641/head svelte@5.0.0-next.11
github-actions[bot] 10 months ago committed by GitHub
parent 78a69acfa1
commit b7af2ffabd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,11 +17,15 @@
"cold-birds-own",
"cuddly-pianos-drop",
"curly-lizards-dream",
"dirty-garlics-design",
"dirty-tips-add",
"early-ads-tie",
"eight-steaks-shout",
"eighty-bikes-camp",
"fair-crabs-check",
"few-mugs-fail",
"fifty-steaks-float",
"forty-comics-invent",
"fresh-weeks-trade",
"funny-wombats-argue",
"good-pianos-jump",
@ -33,15 +37,20 @@
"kind-deers-lay",
"lazy-spiders-think",
"long-crews-return",
"lovely-items-turn",
"lucky-schools-hang",
"moody-frogs-exist",
"moody-owls-cry",
"new-boats-wait",
"odd-needles-joke",
"odd-schools-wait",
"poor-eggs-enjoy",
"popular-mangos-rest",
"quiet-camels-mate",
"rich-sheep-burn",
"rotten-buckets-develop",
"serious-zebras-scream",
"seven-deers-jam",
"sharp-gorillas-impress",
"shiny-baboons-play",
"shiny-shrimps-march",

@ -1,5 +1,27 @@
# svelte
## 5.0.0-next.11
### Patch Changes
- feat: add type of `$effect.active` ([#9624](https://github.com/sveltejs/svelte/pull/9624))
- fix: correct bind this multiple bindings ([#9617](https://github.com/sveltejs/svelte/pull/9617))
- chore: reuse common templates ([#9601](https://github.com/sveltejs/svelte/pull/9601))
- fix: handle undefined bubble events ([#9614](https://github.com/sveltejs/svelte/pull/9614))
- fix: dont error on stores looking like runes when runes explicitly turned off ([#9615](https://github.com/sveltejs/svelte/pull/9615))
- fix: improve member expression mutation logic ([#9625](https://github.com/sveltejs/svelte/pull/9625))
- chore: untrack keyed validation logic ([#9618](https://github.com/sveltejs/svelte/pull/9618))
- fix: ensure snippets have correct scope ([#9623](https://github.com/sveltejs/svelte/pull/9623))
- fix: better attribute casing logic ([#9626](https://github.com/sveltejs/svelte/pull/9626))
## 5.0.0-next.10
### Patch Changes

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

Loading…
Cancel
Save