Version Packages (next) (#11940)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
html-validation svelte@5.0.0-next.152
github-actions[bot] 4 weeks ago committed by GitHub
parent bd950a0be2
commit a41223598c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -40,6 +40,7 @@
"brave-walls-flow",
"breezy-carrots-flash",
"breezy-rules-beg",
"breezy-waves-camp",
"bright-falcons-float",
"bright-peas-juggle",
"bright-snakes-sing",
@ -92,6 +93,7 @@
"cyan-flowers-destroy",
"cyan-spies-grin",
"cyan-squids-drive",
"cyan-toes-share",
"dirty-bats-punch",
"dirty-donuts-yell",
"dirty-eyes-itch",
@ -137,6 +139,7 @@
"famous-kiwis-thank",
"famous-knives-sneeze",
"famous-pants-pay",
"fast-donkeys-pay",
"fast-penguins-matter",
"fast-weeks-clean",
"few-clouds-shop",
@ -147,6 +150,7 @@
"fifty-rice-wait",
"fifty-steaks-float",
"five-tigers-search",
"flat-ghosts-fly",
"flat-melons-protect",
"flat-olives-live",
"fluffy-dolls-share",
@ -168,6 +172,7 @@
"fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp",
"funny-dragons-double",
"funny-ties-jump",
"funny-trees-cry",
"funny-wombats-argue",
@ -263,6 +268,7 @@
"lazy-spiders-think",
"lemon-geese-call",
"lemon-geese-drum",
"lemon-meals-appear",
"lemon-trees-act",
"light-badgers-glow",
"light-days-clean",
@ -466,6 +472,7 @@
"smart-cherries-leave",
"smart-grapes-mate",
"smart-parents-swim",
"smart-spiders-fetch",
"smart-turkeys-tell",
"smart-zebras-pay",
"smooth-kids-protect",
@ -482,7 +489,9 @@
"sour-rules-march",
"sour-weeks-fix",
"spicy-jeans-deliver",
"spicy-peas-vanish",
"spicy-plums-admire",
"spotty-crabs-give",
"spotty-houses-search",
"spotty-pens-agree",
"spotty-rocks-destroy",
@ -534,6 +543,7 @@
"thick-swans-type",
"thin-colts-yawn",
"thin-foxes-lick",
"thin-spoons-float",
"thin-years-rhyme",
"thirty-flowers-sit",
"thirty-ghosts-fix",
@ -556,9 +566,11 @@
"tiny-kings-whisper",
"tiny-meals-deliver",
"tiny-moose-kiss",
"tiny-taxis-whisper",
"tough-radios-punch",
"tough-tomatoes-explain",
"twelve-beans-drive",
"twelve-cows-learn",
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",

@ -1,5 +1,33 @@
# svelte
## 5.0.0-next.152
### Patch Changes
- fix: validate form inside a form ([#11947](https://github.com/sveltejs/svelte/pull/11947))
- fix: more robust handling of events in spread attributes ([#11942](https://github.com/sveltejs/svelte/pull/11942))
- feat: simpler `<svelte:element> hydration ([#11773](https://github.com/sveltejs/svelte/pull/11773))
- fix: make `legacy.componentApi` option more visible ([#11924](https://github.com/sveltejs/svelte/pull/11924))
- feat: simpler hydration of CSS custom property wrappers ([#11948](https://github.com/sveltejs/svelte/pull/11948))
- chore: optimise effects that only exist to return a teardown ([#11936](https://github.com/sveltejs/svelte/pull/11936))
- feat: always create wrapper `<div>` for `<svelte:component>` with CSS custom properties ([#11792](https://github.com/sveltejs/svelte/pull/11792))
- feat: add svelte/events package and export `on` function ([#11912](https://github.com/sveltejs/svelte/pull/11912))
- feat: more efficient output for attributes in SSR ([#11949](https://github.com/sveltejs/svelte/pull/11949))
- fix: update reactive set when deleting initial values ([#11967](https://github.com/sveltejs/svelte/pull/11967))
- feat: simpler string normalization ([#11954](https://github.com/sveltejs/svelte/pull/11954))
- fix: always assign text.nodeValue ([#11944](https://github.com/sveltejs/svelte/pull/11944))
## 5.0.0-next.151
### Patch Changes

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

Loading…
Cancel
Save