Version Packages (next) (#10122)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10134/head svelte@5.0.0-next.31
github-actions[bot] 6 months ago committed by GitHub
parent dda4ad510f
commit c05e94f26e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,12 +34,14 @@
"dry-eggs-play",
"dry-eggs-retire",
"dull-mangos-wave",
"dull-roses-relate",
"early-ads-tie",
"eight-steaks-shout",
"eighty-bikes-camp",
"empty-crabs-think",
"fair-crabs-check",
"famous-knives-sneeze",
"fast-weeks-clean",
"few-mugs-fail",
"fifty-rice-wait",
"fifty-steaks-float",
@ -64,6 +66,7 @@
"honest-icons-change",
"hungry-dots-fry",
"hungry-tips-unite",
"hungry-trees-travel",
"itchy-beans-melt",
"itchy-kings-deliver",
"itchy-lions-wash",
@ -83,6 +86,7 @@
"light-pens-watch",
"long-buckets-lay",
"long-crews-return",
"loud-cheetahs-flow",
"lovely-carpets-lick",
"lovely-items-turn",
"lovely-rules-eat",
@ -90,6 +94,7 @@
"moody-frogs-exist",
"moody-owls-cry",
"nasty-lions-double",
"nasty-yaks-peel",
"neat-dingos-clap",
"new-boats-wait",
"ninety-dingos-walk",
@ -111,8 +116,10 @@
"pretty-ties-help",
"purple-dragons-peel",
"quiet-camels-mate",
"quiet-crabs-nail",
"rare-pears-whisper",
"real-guests-do",
"red-doors-own",
"rich-sheep-burn",
"rich-tables-sing",
"rotten-bags-type",
@ -127,6 +134,7 @@
"sharp-tomatoes-learn",
"shiny-baboons-play",
"shiny-shrimps-march",
"short-buses-camp",
"slimy-clouds-talk",
"slimy-walls-draw",
"slow-chefs-dream",
@ -138,6 +146,7 @@
"sour-forks-stare",
"sour-rules-march",
"spicy-plums-admire",
"spotty-pens-agree",
"stale-books-perform",
"stale-comics-look",
"strong-gifts-smoke",
@ -172,6 +181,7 @@
"wet-games-fly",
"wicked-clouds-exercise",
"wicked-doors-train",
"wicked-hairs-cheer",
"wild-foxes-wonder",
"wise-dancers-hang",
"wise-donkeys-marry",

@ -1,5 +1,29 @@
# svelte
## 5.0.0-next.31
### Patch Changes
- fix: infer `svg` namespace correctly ([#10027](https://github.com/sveltejs/svelte/pull/10027))
- fix: keep intermediate number value representations ([`d171a39b0`](https://github.com/sveltejs/svelte/commit/d171a39b0ad97e2a05de1f38bc76a3d345e2b3d5))
- feat: allow modifiying derived props ([#10080](https://github.com/sveltejs/svelte/pull/10080))
- fix: improve signal consumer tracking behavior ([#10121](https://github.com/sveltejs/svelte/pull/10121))
- fix: support async/await in destructuring assignments ([#9962](https://github.com/sveltejs/svelte/pull/9962))
- fix: take into account member expressions when determining legacy reactive dependencies ([#10128](https://github.com/sveltejs/svelte/pull/10128))
- fix: make `ComponentType` generic optional ([`14dbc1be1`](https://github.com/sveltejs/svelte/commit/14dbc1be1720ff69e6f3c407e43c9c0765b0c140))
- fix: silence false positive state warning ([`dda4ad510`](https://github.com/sveltejs/svelte/commit/dda4ad510f1907a114a16227c3412eb00bd21738))
- fix: ensure nested blocks are inert during outro transitions ([#10126](https://github.com/sveltejs/svelte/pull/10126))
- fix: improve ssr template literal generation ([#10127](https://github.com/sveltejs/svelte/pull/10127))
## 5.0.0-next.30
### Patch Changes

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

Loading…
Cancel
Save