Version Packages (next) (#11260)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11299/head svelte@5.0.0-next.111
github-actions[bot] 3 months ago committed by GitHub
parent 0bb49b12d2
commit 05ac8f4322
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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",

@ -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

@ -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": {

@ -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';

Loading…
Cancel
Save