Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
28 changes: 28 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';