Version Packages (next) (#10920)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10932/head svelte@5.0.0-next.84
github-actions[bot] 7 months ago committed by GitHub
parent ed2981d7b8
commit b44311acc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -163,6 +163,7 @@
"loud-cheetahs-flow", "loud-cheetahs-flow",
"loud-ravens-drop", "loud-ravens-drop",
"lovely-carpets-lick", "lovely-carpets-lick",
"lovely-houses-own",
"lovely-items-turn", "lovely-items-turn",
"lovely-rules-eat", "lovely-rules-eat",
"lucky-schools-hang", "lucky-schools-hang",
@ -225,6 +226,7 @@
"real-guests-do", "real-guests-do",
"real-items-suffer", "real-items-suffer",
"real-pandas-brush", "real-pandas-brush",
"red-cycles-pretend",
"red-doors-own", "red-doors-own",
"red-feet-worry", "red-feet-worry",
"red-poets-study", "red-poets-study",
@ -297,6 +299,7 @@
"spotty-turkeys-sparkle", "spotty-turkeys-sparkle",
"stale-books-perform", "stale-books-perform",
"stale-comics-look", "stale-comics-look",
"stale-fans-rest",
"stale-jeans-refuse", "stale-jeans-refuse",
"strange-apricots-happen", "strange-apricots-happen",
"strong-gifts-smoke", "strong-gifts-smoke",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.84
### Patch Changes
- fix: reliably remove undefined attributes during hydration ([#10917](https://github.com/sveltejs/svelte/pull/10917))
- fix: Add `elementtiming` HTMLAttribute, remove `crossorigin` from HTMLInputAttributes ([#10921](https://github.com/sveltejs/svelte/pull/10921))
- feat: shorter compiler output for attribute updates ([#10917](https://github.com/sveltejs/svelte/pull/10917))
## 5.0.0-next.83 ## 5.0.0-next.83
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.83", "version": "5.0.0-next.84",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.83'; export const VERSION = '5.0.0-next.84';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save