Version Packages (next) (#12846)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12855/head svelte@5.0.0-next.222
github-actions[bot] 5 months ago committed by GitHub
parent 50b905a531
commit 45da5a426f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -226,6 +226,7 @@
"friendly-candles-relate", "friendly-candles-relate",
"friendly-clouds-rhyme", "friendly-clouds-rhyme",
"friendly-lies-camp", "friendly-lies-camp",
"funny-bugs-kiss",
"funny-cooks-clean", "funny-cooks-clean",
"funny-dragons-double", "funny-dragons-double",
"funny-ties-jump", "funny-ties-jump",
@ -383,6 +384,7 @@
"lovely-rules-eat", "lovely-rules-eat",
"lovely-zebras-own", "lovely-zebras-own",
"lucky-colts-remember", "lucky-colts-remember",
"lucky-experts-float",
"lucky-geckos-swim", "lucky-geckos-swim",
"lucky-panthers-chew", "lucky-panthers-chew",
"lucky-schools-hang", "lucky-schools-hang",
@ -420,6 +422,7 @@
"neat-boats-shake", "neat-boats-shake",
"neat-boxes-chew", "neat-boxes-chew",
"neat-dingos-clap", "neat-dingos-clap",
"neat-ducks-jam",
"neat-files-rescue", "neat-files-rescue",
"neat-jokes-beam", "neat-jokes-beam",
"nervous-berries-boil", "nervous-berries-boil",
@ -469,6 +472,7 @@
"perfect-hairs-matter", "perfect-hairs-matter",
"perfect-hats-dance", "perfect-hats-dance",
"pink-bikes-agree", "pink-bikes-agree",
"pink-countries-repair",
"pink-goats-promise", "pink-goats-promise",
"pink-mayflies-tie", "pink-mayflies-tie",
"plenty-clouds-reply", "plenty-clouds-reply",
@ -661,6 +665,7 @@
"stale-nails-listen", "stale-nails-listen",
"strange-apricots-happen", "strange-apricots-happen",
"strange-pears-perform", "strange-pears-perform",
"strange-pillows-greet",
"strange-roses-brake", "strange-roses-brake",
"strong-apricots-destroy", "strong-apricots-destroy",
"strong-gifts-smoke", "strong-gifts-smoke",
@ -747,6 +752,7 @@
"tough-tomatoes-explain", "tough-tomatoes-explain",
"tricky-avocados-play", "tricky-avocados-play",
"tricky-balloons-care", "tricky-balloons-care",
"tricky-coats-shop",
"tricky-ears-shout", "tricky-ears-shout",
"tricky-laws-bathe", "tricky-laws-bathe",
"twelve-beans-drive", "twelve-beans-drive",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.222
### Patch Changes
- fix: avoid throwing `store_invalid_subscription_module` for runes ([#12848](https://github.com/sveltejs/svelte/pull/12848))
- fix: omit `$index` parameter where possible ([#12851](https://github.com/sveltejs/svelte/pull/12851))
- feat: skip over static subtrees ([#12849](https://github.com/sveltejs/svelte/pull/12849))
- chore: set `binding.kind` before analysis ([#12843](https://github.com/sveltejs/svelte/pull/12843))
- feat: better compiler warnings for non-reactive dependencies of reactive statements ([#12824](https://github.com/sveltejs/svelte/pull/12824))
- fix: skip unnecessary `$legacy` flag ([#12850](https://github.com/sveltejs/svelte/pull/12850))
## 5.0.0-next.221 ## 5.0.0-next.221
### 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.221", "version": "5.0.0-next.222",
"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.221'; export const VERSION = '5.0.0-next.222';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save