diff --git a/.changeset/pre.json b/.changeset/pre.json index 70c2299955..0a230cc4ba 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -14,15 +14,18 @@ "brown-spoons-boil", "chilly-dolphins-lick", "clean-eels-beg", + "cold-birds-own", "cuddly-pianos-drop", "curly-lizards-dream", "early-ads-tie", "eight-steaks-shout", "eighty-bikes-camp", + "fair-crabs-check", "fifty-steaks-float", "fresh-weeks-trade", "funny-wombats-argue", "good-pianos-jump", + "green-hounds-play", "honest-icons-change", "hungry-dots-fry", "itchy-lions-wash", @@ -32,12 +35,15 @@ "long-crews-return", "lucky-schools-hang", "moody-owls-cry", + "new-boats-wait", "odd-needles-joke", "poor-eggs-enjoy", + "popular-mangos-rest", "quiet-camels-mate", "rich-sheep-burn", "rotten-buckets-develop", "sharp-gorillas-impress", + "shiny-baboons-play", "shiny-shrimps-march", "small-papayas-laugh", "soft-geese-learn", @@ -46,7 +52,10 @@ "tall-shrimps-worry", "thirty-flowers-sit", "thirty-ghosts-fix", + "thirty-impalas-repair", "tiny-kings-whisper", + "two-falcons-buy", + "wicked-clouds-exercise", "wicked-doors-train" ] } diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index d883faef69..03f8c7b584 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,27 @@ # svelte +## 5.0.0-next.10 + +### Patch Changes + +- chore: add inline new class warning ([#9583](https://github.com/sveltejs/svelte/pull/9583)) + +- fix: prevent false positives when detecting runes mode ([#9599](https://github.com/sveltejs/svelte/pull/9599)) + +- fix: deconflict generated names against globals ([#9570](https://github.com/sveltejs/svelte/pull/9570)) + +- chore: bump esrap ([#9590](https://github.com/sveltejs/svelte/pull/9590)) + +- feat: add $effect.active rune ([#9591](https://github.com/sveltejs/svelte/pull/9591)) + +- feat: add Snippet type ([#9584](https://github.com/sveltejs/svelte/pull/9584)) + +- fix: adjust event delegation heuristics ([#9581](https://github.com/sveltejs/svelte/pull/9581)) + +- chore: remove unused code ([#9593](https://github.com/sveltejs/svelte/pull/9593)) + +- fix: adjust regex ([#9572](https://github.com/sveltejs/svelte/pull/9572)) + ## 5.0.0-next.9 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 51a8071895..2f577c7ea4 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.9", + "version": "5.0.0-next.10", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index a081a8b896..7c1b4c063b 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.9'; +export const VERSION = '5.0.0-next.10'; export const PUBLIC_VERSION = '5';