Version Packages (next) (#12789)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12792/head svelte@5.0.0-next.213
github-actions[bot] 3 months ago committed by GitHub
parent d8954d7add
commit 1a3dbda20c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -98,6 +98,7 @@
"cool-poems-watch",
"cool-rabbits-tickle",
"cool-roses-trade",
"cool-turtles-travel",
"cuddly-pianos-drop",
"cuddly-points-tickle",
"curly-cooks-cheer",
@ -618,6 +619,7 @@
"smooth-pens-exist",
"smooth-pens-protect",
"smooth-rings-rush",
"smooth-windows-explain",
"soft-clocks-remember",
"soft-geese-learn",
"soft-months-grab",
@ -653,6 +655,7 @@
"strong-pans-doubt",
"stupid-bottles-lay",
"stupid-parents-crash",
"stupid-rivers-stare",
"sweet-bottles-check",
"sweet-mangos-beg",
"sweet-pens-sniff",
@ -785,6 +788,7 @@
"wise-ties-clap",
"witty-bikes-shave",
"witty-camels-warn",
"witty-frogs-cheat",
"witty-hornets-think",
"witty-phones-retire",
"witty-readers-provide",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.213
### Patch Changes
- fix: ensure custom elements do not sync flush on mount ([#12787](https://github.com/sveltejs/svelte/pull/12787))
- fix: ensure event handlers referencing $host are not hoisted ([#12775](https://github.com/sveltejs/svelte/pull/12775))
- fix: provide more hydration mismatch coverage ([#12755](https://github.com/sveltejs/svelte/pull/12755))
- chore: simpler fallback values ([#12788](https://github.com/sveltejs/svelte/pull/12788))
## 5.0.0-next.212
### Patch Changes

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

Loading…
Cancel
Save