diff --git a/.changeset/pre.json b/.changeset/pre.json index e698b5f510..0b32a281d3 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -20,6 +20,7 @@ "chilled-pumas-invite", "chilly-dolphins-lick", "clean-eels-beg", + "clever-chefs-relate", "clever-rockets-burn", "cold-birds-own", "cool-ants-leave", @@ -66,6 +67,7 @@ "itchy-beans-melt", "itchy-kings-deliver", "itchy-lions-wash", + "itchy-terms-guess", "khaki-mails-draw", "khaki-moose-arrive", "kind-deers-lay", @@ -98,6 +100,7 @@ "old-houses-drum", "old-mails-sneeze", "old-oranges-compete", + "olive-kangaroos-brake", "orange-dingos-poke", "polite-dolphins-care", "polite-pumpkins-guess", @@ -125,6 +128,7 @@ "shiny-baboons-play", "shiny-shrimps-march", "slimy-clouds-talk", + "slimy-walls-draw", "slow-chefs-dream", "small-papayas-laugh", "smart-parents-swim", @@ -134,6 +138,7 @@ "sour-forks-stare", "sour-rules-march", "spicy-plums-admire", + "stale-books-perform", "stale-comics-look", "strong-gifts-smoke", "strong-lemons-provide", @@ -156,6 +161,7 @@ "thirty-impalas-repair", "thirty-wombats-relax", "three-suits-grin", + "tidy-buses-whisper", "tiny-kings-whisper", "twelve-dragons-join", "twelve-onions-juggle", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 57240fb631..184030c083 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,21 @@ # 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 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index a1b62c22cf..736fdc7e45 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -2,7 +2,7 @@ "name": "svelte", "description": "Cybernetically enhanced web apps", "license": "MIT", - "version": "5.0.0-next.29", + "version": "5.0.0-next.30", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 17b4be4464..74d15d26b8 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '5.0.0-next.29'; +export const VERSION = '5.0.0-next.30'; export const PUBLIC_VERSION = '5';