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

@ -1,5 +1,15 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save