Version Packages (next) (#12940)

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

@ -181,6 +181,7 @@
"famous-falcons-melt",
"famous-kiwis-thank",
"famous-knives-sneeze",
"famous-mirrors-count",
"famous-pants-pay",
"fast-donkeys-pay",
"fast-penguins-matter",
@ -517,6 +518,7 @@
"popular-games-hug",
"popular-ligers-perform",
"popular-mangos-rest",
"popular-news-happen",
"popular-roses-teach",
"popular-walls-hunt",
"pretty-ties-help",
@ -826,6 +828,7 @@
"wild-cows-chew",
"wild-foxes-wonder",
"wild-moose-compare",
"wild-moose-destroy",
"wild-poems-design",
"wild-pumas-count",
"wise-apples-care",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.230
### Patch Changes
- fix: align list of passive events with browser defaults ([#12933](https://github.com/sveltejs/svelte/pull/12933))
- fix: ensure `{#await}` scope shadowing is computed in the correct order ([#12945](https://github.com/sveltejs/svelte/pull/12945))
- fix: don't skip custom elements with attributes ([#12939](https://github.com/sveltejs/svelte/pull/12939))
## 5.0.0-next.229
### Patch Changes

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

Loading…
Cancel
Save