Version Packages (next) (#12838)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12839/head svelte@5.0.0-next.221
github-actions[bot] 1 month ago committed by GitHub
parent b0f693b121
commit f12a5e49da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -58,8 +58,10 @@
"brown-months-flow", "brown-months-flow",
"brown-months-fry", "brown-months-fry",
"brown-spoons-boil", "brown-spoons-boil",
"brown-turkeys-tap",
"calm-buses-clap", "calm-buses-clap",
"calm-cameras-hide", "calm-cameras-hide",
"calm-clocks-raise",
"calm-pandas-vanish", "calm-pandas-vanish",
"calm-ravens-sneeze", "calm-ravens-sneeze",
"chatty-beans-divide", "chatty-beans-divide",
@ -686,6 +688,7 @@
"tall-shrimps-worry", "tall-shrimps-worry",
"tall-tigers-wait", "tall-tigers-wait",
"tame-cycles-kneel", "tame-cycles-kneel",
"tame-dodos-float",
"tame-dots-battle", "tame-dots-battle",
"tame-goats-bow", "tame-goats-bow",
"tame-spies-drum", "tame-spies-drum",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.221
### Patch Changes
- fix: ensure onwheel is passive by default ([#12837](https://github.com/sveltejs/svelte/pull/12837))
- chore: improve signal perf by using Set rather than array for reactions ([#12831](https://github.com/sveltejs/svelte/pull/12831))
- fix: ensure each key validation occurs for updates ([#12836](https://github.com/sveltejs/svelte/pull/12836))
## 5.0.0-next.220 ## 5.0.0-next.220
### 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.220", "version": "5.0.0-next.221",
"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.220'; export const VERSION = '5.0.0-next.221';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save