Version Packages (next) (#10409)

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

@ -66,6 +66,7 @@
"forty-comics-invent",
"forty-dolls-wave",
"forty-peaches-unite",
"forty-suns-smile",
"four-flies-hammer",
"fresh-weeks-trade",
"friendly-candles-relate",
@ -115,6 +116,7 @@
"long-buckets-lay",
"long-crews-return",
"loud-cheetahs-flow",
"loud-ravens-drop",
"lovely-carpets-lick",
"lovely-items-turn",
"lovely-rules-eat",
@ -154,6 +156,7 @@
"quiet-crabs-nail",
"quiet-timers-speak",
"rare-pears-whisper",
"rare-worms-hunt",
"real-guests-do",
"real-items-suffer",
"red-doors-own",
@ -207,6 +210,7 @@
"sweet-pens-sniff",
"swift-donkeys-perform",
"swift-fans-stare",
"swift-feet-juggle",
"swift-ravens-hunt",
"swift-seahorses-deliver",
"tall-books-grin",
@ -230,6 +234,7 @@
"thirty-pears-hug",
"thirty-wombats-relax",
"three-camels-sell",
"three-icons-trade",
"three-suits-grin",
"tidy-buses-whisper",
"tidy-starfishes-allow",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.49
### Patch Changes
- fix: properly analyze group expressions ([#10410](https://github.com/sveltejs/svelte/pull/10410))
- fix: handle nested script tags ([#10416](https://github.com/sveltejs/svelte/pull/10416))
- fix: only update lazy properties that have actually changed ([#10415](https://github.com/sveltejs/svelte/pull/10415))
- fix: correctly determine binding scope of `let:` directives ([#10395](https://github.com/sveltejs/svelte/pull/10395))
- fix: run `onDestroy` callbacks during SSR ([#10297](https://github.com/sveltejs/svelte/pull/10297))
## 5.0.0-next.48
### Patch Changes

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

Loading…
Cancel
Save