diff --git a/.changeset/pre.json b/.changeset/pre.json index 250b24d1b8..6a3cec722e 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -106,6 +106,7 @@ "few-clouds-shop", "few-mugs-fail", "few-teachers-know", + "fifty-masks-give", "fifty-rice-wait", "fifty-steaks-float", "five-tigers-search", @@ -197,6 +198,7 @@ "light-badgers-glow", "light-days-clean", "light-humans-hang", + "light-penguins-invent", "light-pens-watch", "little-pans-jog", "long-buckets-lay", @@ -211,6 +213,7 @@ "lovely-houses-own", "lovely-items-turn", "lovely-rules-eat", + "lucky-colts-remember", "lucky-schools-hang", "lucky-toes-begin", "many-rockets-give", @@ -303,6 +306,7 @@ "selfish-socks-smile", "selfish-spies-help", "selfish-tools-hide", + "serious-crabs-punch", "serious-gorillas-eat", "serious-kids-deliver", "serious-needles-joke", @@ -320,12 +324,14 @@ "sharp-kids-happen", "sharp-tomatoes-learn", "shiny-baboons-play", + "shiny-mayflies-clean", "shiny-rats-heal", "shiny-shrimps-march", "short-buses-camp", "short-countries-rush", "shy-fishes-drive", "silent-apes-report", + "silent-hats-stare", "silly-laws-happen", "silly-lies-film", "silly-ways-wash", @@ -341,6 +347,7 @@ "slow-kids-sparkle", "slow-plums-chew", "slow-wombats-reply", + "small-apples-eat", "small-papayas-laugh", "small-sheep-type", "small-spiders-fail", @@ -404,6 +411,7 @@ "thick-cycles-rule", "thick-pans-tell", "thick-shirts-deliver", + "thick-swans-type", "thin-foxes-lick", "thirty-flowers-sit", "thirty-ghosts-fix", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 45415364f3..a5a654eedb 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,25 @@ # svelte +## 5.0.0-next.111 + +### Patch Changes + +- fix: run render functions for dynamic void elements ([#11258](https://github.com/sveltejs/svelte/pull/11258)) + +- fix: allow events to continue propagating following an error ([#11263](https://github.com/sveltejs/svelte/pull/11263)) + +- fix: resolve type definition error in `svelte/compiler` ([#11283](https://github.com/sveltejs/svelte/pull/11283)) + +- feat: include `script` and `svelte:options` attributes in ast ([#11241](https://github.com/sveltejs/svelte/pull/11241)) + +- fix: only destroy snippets when they have changed ([#11267](https://github.com/sveltejs/svelte/pull/11267)) + +- fix: add type arguments to Map and Set ([#10820](https://github.com/sveltejs/svelte/pull/10820)) + +- feat: implement `:global {...}` CSS blocks ([#11276](https://github.com/sveltejs/svelte/pull/11276)) + +- feat: add read-only `bind:focused` ([#11271](https://github.com/sveltejs/svelte/pull/11271)) + ## 5.0.0-next.110 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 43d86f4d9d..709d74dd35 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.110", + "version": "5.0.0-next.111", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 0056ca8180..b13963eb4d 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.110'; +export const VERSION = '5.0.0-next.111'; export const PUBLIC_VERSION = '5';