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

@ -1,5 +1,19 @@
# svelte # 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 ## 5.0.0-next.48
### 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.48", "version": "5.0.0-next.49",
"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.48'; export const VERSION = '5.0.0-next.49';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save