Version Packages (next) (#13532)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13544/head svelte@5.0.0-next.264
github-actions[bot] 3 months ago committed by GitHub
parent 06c9e5864b
commit 2f6d84ab6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

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

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

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

Loading…
Cancel
Save