Version Packages (next) (#10983)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10991/head svelte@5.0.0-next.89
github-actions[bot] 5 months ago committed by GitHub
parent b119600966
commit 442f2d7c39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -168,6 +168,7 @@
"long-crews-return", "long-crews-return",
"long-lobsters-mate", "long-lobsters-mate",
"loud-cheetahs-flow", "loud-cheetahs-flow",
"loud-mugs-smile",
"loud-ravens-drop", "loud-ravens-drop",
"lovely-carpets-lick", "lovely-carpets-lick",
"lovely-houses-own", "lovely-houses-own",
@ -255,6 +256,7 @@
"serious-gorillas-eat", "serious-gorillas-eat",
"serious-kids-deliver", "serious-kids-deliver",
"serious-needles-joke", "serious-needles-joke",
"serious-poems-brake",
"serious-socks-cover", "serious-socks-cover",
"serious-zebras-scream", "serious-zebras-scream",
"seven-deers-jam", "seven-deers-jam",
@ -272,6 +274,7 @@
"short-countries-rush", "short-countries-rush",
"silent-apes-report", "silent-apes-report",
"silly-laws-happen", "silly-laws-happen",
"silly-lies-film",
"silly-ways-wash", "silly-ways-wash",
"silver-points-approve", "silver-points-approve",
"sixty-items-crash", "sixty-items-crash",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.89
### Patch Changes
- fix: expose 'svelte/internal' to prevent Vite erroring on startup ([#10987](https://github.com/sveltejs/svelte/pull/10987))
- fix: revert SSR shorthand comments ([#10980](https://github.com/sveltejs/svelte/pull/10980))
- fix: child effects are removed from parent branches ([#10985](https://github.com/sveltejs/svelte/pull/10985))
## 5.0.0-next.88 ## 5.0.0-next.88
### 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.88", "version": "5.0.0-next.89",
"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.88'; export const VERSION = '5.0.0-next.89';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save