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
6 changes: 6 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"chilled-seas-jog",
"chilly-carpets-switch",
"chilly-dolphins-lick",
"chilly-glasses-retire",
"chilly-laws-juggle",
"chilly-pans-raise",
"chilly-rocks-hug",
Expand Down Expand Up @@ -174,6 +175,7 @@
"eighty-days-cheat",
"eighty-days-wave",
"eighty-dragons-search",
"eighty-hornets-breathe",
"eighty-lizards-notice",
"eighty-mails-develop",
"eleven-avocados-walk",
Expand Down Expand Up @@ -286,6 +288,7 @@
"gentle-wasps-pull",
"giant-bananas-turn",
"giant-jars-applaud",
"giant-ladybugs-thank",
"giant-moons-own",
"giant-planets-shake",
"giant-plants-grin",
Expand Down Expand Up @@ -828,6 +831,7 @@
"tasty-cheetahs-appear",
"tasty-mice-admire",
"tasty-numbers-perform",
"tasty-spies-sniff",
"tasty-steaks-smile",
"ten-eels-move",
"ten-foxes-repeat",
Expand Down Expand Up @@ -877,6 +881,7 @@
"tidy-fans-relax",
"tidy-lizards-happen",
"tidy-starfishes-allow",
"tiny-ads-press",
"tiny-kings-whisper",
"tiny-meals-deliver",
"tiny-moose-kiss",
Expand Down Expand Up @@ -929,6 +934,7 @@
"wet-bats-exercise",
"wet-donkeys-fry",
"wet-games-fly",
"wet-hats-peel",
"wet-pears-buy",
"wet-pears-remain",
"wet-wombats-repeat",
Expand Down
16 changes: 16 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# svelte

## 5.0.0-next.264

### Patch Changes

- fix: exclude custom elements from HTML tree validation ([#13540](https://github.com/sveltejs/svelte/pull/13540))

- fix: apply class/style directives after attributes ([#13535](https://github.com/sveltejs/svelte/pull/13535))

- fix: make immutable option work more correctly ([#13526](https://github.com/sveltejs/svelte/pull/13526))

- breaking: use `<svelte-css-wrapper>` instead of `<div>` for style props ([#13499](https://github.com/sveltejs/svelte/pull/13499))

- fix: mark custom element with virtual class attribute as dynamic ([#13435](https://github.com/sveltejs/svelte/pull/13435))

- fix: ensure set_text applies coercion to objects before diff ([#13542](https://github.com/sveltejs/svelte/pull/13542))

## 5.0.0-next.263

### 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.263",
"version": "5.0.0-next.264",
"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.263';
export const VERSION = '5.0.0-next.264';
export const PUBLIC_VERSION = '5';