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

@ -1,5 +1,27 @@
# svelte # 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 ## 5.0.0-next.10
### 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.10", "version": "5.0.0-next.11",
"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.10'; export const VERSION = '5.0.0-next.11';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save