diff --git a/.changeset/pre.json b/.changeset/pre.json index e8a33f2f70..3fed7de778 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -56,6 +56,7 @@ "kind-deers-lay", "kind-eagles-join", "large-clouds-carry", + "late-crabs-lay", "lazy-masks-sit", "lazy-months-knock", "lazy-spiders-think", @@ -81,10 +82,12 @@ "poor-eggs-enjoy", "poor-seahorses-flash", "popular-mangos-rest", + "purple-dragons-peel", "quiet-camels-mate", "rare-pears-whisper", "rich-sheep-burn", "rich-tables-sing", + "rotten-bags-type", "rotten-buckets-develop", "selfish-tools-hide", "serious-socks-cover", @@ -96,6 +99,7 @@ "shiny-baboons-play", "shiny-shrimps-march", "slimy-clouds-talk", + "slow-chefs-dream", "small-papayas-laugh", "smart-parents-swim", "soft-clocks-remember", @@ -104,11 +108,13 @@ "sour-rules-march", "spicy-plums-admire", "stale-comics-look", + "strong-gifts-smoke", "strong-lemons-provide", "sweet-mangos-beg", "swift-donkeys-perform", "swift-ravens-hunt", "swift-seahorses-deliver", + "tall-books-grin", "tall-shrimps-worry", "tall-tigers-wait", "tasty-numbers-perform", @@ -128,6 +134,7 @@ "wet-games-fly", "wicked-clouds-exercise", "wicked-doors-train", + "wise-dancers-hang", "wise-donkeys-marry", "witty-camels-warn" ] diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 7512da7db9..6a2534e757 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,23 @@ # svelte +## 5.0.0-next.23 + +### Patch Changes + +- feat: add `gamepadconnected` and `gamepaddisconnected` events ([#9861](https://github.com/sveltejs/svelte/pull/9861)) + +- fix: improve unstate type definition ([#9895](https://github.com/sveltejs/svelte/pull/9895)) + +- fix: correctly reflect readonly proxy marker ([#9893](https://github.com/sveltejs/svelte/pull/9893)) + +- chore: improve each block fast-path heuristic ([#9855](https://github.com/sveltejs/svelte/pull/9855)) + +- fix: improve html tag svg behaviour ([#9894](https://github.com/sveltejs/svelte/pull/9894)) + +- fix: ensure class constructor values are proxied ([#9888](https://github.com/sveltejs/svelte/pull/9888)) + +- fix: improve each block index handling ([#9889](https://github.com/sveltejs/svelte/pull/9889)) + ## 5.0.0-next.22 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index d2d8422eb4..62b8c31100 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.22", + "version": "5.0.0-next.23", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 53b5b7a1f6..7b3472a220 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.22'; +export const VERSION = '5.0.0-next.23'; export const PUBLIC_VERSION = '5';