Version Packages (next) (#12897)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12903/head svelte@5.0.0-next.225
github-actions[bot] 1 year ago committed by GitHub
parent aa5c4421cf
commit 4c006d18c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -295,6 +295,7 @@
"hip-balloons-begin",
"hip-garlics-tap",
"hip-goats-smoke",
"hip-jeans-provide",
"hip-months-breathe",
"hip-pumpkins-boil",
"hip-stingrays-teach",
@ -426,6 +427,7 @@
"nasty-glasses-begin",
"nasty-lions-double",
"nasty-mayflies-smoke",
"nasty-penguins-pump",
"nasty-yaks-peel",
"neat-boats-shake",
"neat-boxes-chew",
@ -474,6 +476,7 @@
"orange-comics-prove",
"orange-crews-rescue",
"orange-dingos-poke",
"orange-laws-drop",
"orange-masks-exercise",
"orange-yaks-protect",
"orange-zoos-heal",
@ -781,6 +784,7 @@
"two-falcons-buy",
"two-keys-watch",
"unlucky-boxes-obey",
"unlucky-points-clap",
"unlucky-steaks-warn",
"unlucky-trees-lick",
"violet-mails-trade",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.225
### Patch Changes
- chore: improve the performance of set_text for single expressions ([#12893](https://github.com/sveltejs/svelte/pull/12893))
- fix: add cleanup function signature to `createRawSnippet` ([#12894](https://github.com/sveltejs/svelte/pull/12894))
- feat: more efficient checking for missing SSR text node ([#12891](https://github.com/sveltejs/svelte/pull/12891))
- fix: ensure nullish expressions render empty text ([#12898](https://github.com/sveltejs/svelte/pull/12898))
## 5.0.0-next.224
### Patch Changes

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

Loading…
Cancel
Save