Version Packages (next) (#10112)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10125/head svelte@5.0.0-next.30
github-actions[bot] 12 months ago committed by GitHub
parent 527d099a09
commit 092370b43f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,6 +20,7 @@
"chilled-pumas-invite", "chilled-pumas-invite",
"chilly-dolphins-lick", "chilly-dolphins-lick",
"clean-eels-beg", "clean-eels-beg",
"clever-chefs-relate",
"clever-rockets-burn", "clever-rockets-burn",
"cold-birds-own", "cold-birds-own",
"cool-ants-leave", "cool-ants-leave",
@ -66,6 +67,7 @@
"itchy-beans-melt", "itchy-beans-melt",
"itchy-kings-deliver", "itchy-kings-deliver",
"itchy-lions-wash", "itchy-lions-wash",
"itchy-terms-guess",
"khaki-mails-draw", "khaki-mails-draw",
"khaki-moose-arrive", "khaki-moose-arrive",
"kind-deers-lay", "kind-deers-lay",
@ -98,6 +100,7 @@
"old-houses-drum", "old-houses-drum",
"old-mails-sneeze", "old-mails-sneeze",
"old-oranges-compete", "old-oranges-compete",
"olive-kangaroos-brake",
"orange-dingos-poke", "orange-dingos-poke",
"polite-dolphins-care", "polite-dolphins-care",
"polite-pumpkins-guess", "polite-pumpkins-guess",
@ -125,6 +128,7 @@
"shiny-baboons-play", "shiny-baboons-play",
"shiny-shrimps-march", "shiny-shrimps-march",
"slimy-clouds-talk", "slimy-clouds-talk",
"slimy-walls-draw",
"slow-chefs-dream", "slow-chefs-dream",
"small-papayas-laugh", "small-papayas-laugh",
"smart-parents-swim", "smart-parents-swim",
@ -134,6 +138,7 @@
"sour-forks-stare", "sour-forks-stare",
"sour-rules-march", "sour-rules-march",
"spicy-plums-admire", "spicy-plums-admire",
"stale-books-perform",
"stale-comics-look", "stale-comics-look",
"strong-gifts-smoke", "strong-gifts-smoke",
"strong-lemons-provide", "strong-lemons-provide",
@ -156,6 +161,7 @@
"thirty-impalas-repair", "thirty-impalas-repair",
"thirty-wombats-relax", "thirty-wombats-relax",
"three-suits-grin", "three-suits-grin",
"tidy-buses-whisper",
"tiny-kings-whisper", "tiny-kings-whisper",
"twelve-dragons-join", "twelve-dragons-join",
"twelve-onions-juggle", "twelve-onions-juggle",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.30
### Patch Changes
- fix: allow transition undefined payload ([#10117](https://github.com/sveltejs/svelte/pull/10117))
- fix: apply key animations on proxied arrays ([#10113](https://github.com/sveltejs/svelte/pull/10113))
- fix: improve internal signal dependency checking logic ([#10111](https://github.com/sveltejs/svelte/pull/10111))
- fix: correctly call exported state ([#10114](https://github.com/sveltejs/svelte/pull/10114))
- fix: take into account setters when spreading and binding ([#10091](https://github.com/sveltejs/svelte/pull/10091))
- fix: transform `{@render ...}` expression ([#10116](https://github.com/sveltejs/svelte/pull/10116))
## 5.0.0-next.29 ## 5.0.0-next.29
### 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.29", "version": "5.0.0-next.30",
"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.29'; export const VERSION = '5.0.0-next.30';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save