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

@ -1,5 +1,21 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save