Version Packages (next) (#10832)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10861/head svelte@5.0.0-next.81
github-actions[bot] 4 months ago committed by GitHub
parent 8c2f6039c6
commit c60f2e38a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,6 +13,7 @@
"afraid-moose-matter",
"angry-books-jam",
"angry-plums-punch",
"beige-cobras-smoke",
"beige-flies-wash",
"beige-mirrors-listen",
"beige-rabbits-shave",
@ -63,6 +64,7 @@
"dry-eggs-retire",
"dull-coins-vanish",
"dull-mangos-wave",
"dull-pots-add",
"dull-roses-relate",
"early-ads-tie",
"eight-steaks-shout",
@ -166,6 +168,7 @@
"lucky-schools-hang",
"lucky-toes-begin",
"many-trees-fix",
"mighty-cooks-scream",
"mighty-files-hammer",
"moody-carrots-lay",
"moody-frogs-exist",
@ -192,6 +195,7 @@
"old-mails-sneeze",
"old-oranges-compete",
"olive-kangaroos-brake",
"olive-mice-fix",
"olive-seals-sell",
"olive-shirts-complain",
"olive-socks-kick",
@ -233,6 +237,7 @@
"rotten-rules-invite",
"rude-ghosts-tickle",
"selfish-dragons-knock",
"selfish-spies-help",
"selfish-tools-hide",
"serious-kids-deliver",
"serious-needles-joke",
@ -265,6 +270,7 @@
"small-papayas-laugh",
"small-sheep-type",
"smart-parents-swim",
"smart-turkeys-tell",
"smart-zebras-pay",
"smooth-rings-rush",
"soft-clocks-remember",
@ -306,6 +312,7 @@
"tasty-cheetahs-appear",
"tasty-numbers-perform",
"tasty-steaks-smile",
"ten-eels-move",
"ten-foxes-repeat",
"ten-jokes-divide",
"ten-peaches-sleep",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.81
### Patch Changes
- feat: add support for webkitdirectory DOM boolean attribute ([#10847](https://github.com/sveltejs/svelte/pull/10847))
- fix: don't override instance methods during legacy class creation ([#10834](https://github.com/sveltejs/svelte/pull/10834))
- fix: adjust scope parent for named slots ([#10843](https://github.com/sveltejs/svelte/pull/10843))
- fix: improve handling of unowned derived signals ([#10842](https://github.com/sveltejs/svelte/pull/10842))
- fix: improve element class attribute behaviour ([#10856](https://github.com/sveltejs/svelte/pull/10856))
- fix: ensure select value is updated upon select option removal ([#10846](https://github.com/sveltejs/svelte/pull/10846))
- fix: ensure capture events don't call delegated events ([#10831](https://github.com/sveltejs/svelte/pull/10831))
## 5.0.0-next.80
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.80",
"version": "5.0.0-next.81",
"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.80';
export const VERSION = '5.0.0-next.81';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save