Version Packages (next) (#9492)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9519/head svelte@5.0.0-next.5
github-actions[bot] 11 months ago committed by GitHub
parent 3b2e6eac9a
commit e0271f0fc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,13 +9,16 @@
"svelte.dev": "1.0.0"
},
"changesets": [
"afraid-moose-matter",
"brave-walls-destroy",
"brown-spoons-boil",
"chilly-dolphins-lick",
"clean-eels-beg",
"cuddly-pianos-drop",
"curly-lizards-dream",
"eight-steaks-shout",
"eighty-bikes-camp",
"fifty-steaks-float",
"fresh-weeks-trade",
"funny-wombats-argue",
"good-pianos-jump",
@ -27,12 +30,16 @@
"moody-owls-cry",
"poor-eggs-enjoy",
"quiet-camels-mate",
"rich-sheep-burn",
"rotten-buckets-develop",
"sharp-gorillas-impress",
"small-papayas-laugh",
"soft-geese-learn",
"sour-rules-march",
"strong-lemons-provide",
"tall-shrimps-worry",
"thirty-flowers-sit",
"tiny-kings-whisper"
"tiny-kings-whisper",
"wicked-doors-train"
]
}

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.5
### Patch Changes
- fix: tweak script/style tag parsing/preprocessing logic ([#9502](https://github.com/sveltejs/svelte/pull/9502))
- fix: emit useful error on invalid binding to derived state ([#9497](https://github.com/sveltejs/svelte/pull/9497))
- fix: address unowned propagation signal issue ([#9510](https://github.com/sveltejs/svelte/pull/9510))
- fix: add top level snippets to instance scope ([#9467](https://github.com/sveltejs/svelte/pull/9467))
- fix: only treat instance context exports as accessors ([#9500](https://github.com/sveltejs/svelte/pull/9500))
- fix: allow setting files binding for `<input type="file" />` ([#9463](https://github.com/sveltejs/svelte/pull/9463))
- fix: add missing visitor for assignments during compilation ([#9511](https://github.com/sveltejs/svelte/pull/9511))
## 5.0.0-next.4
### Patch Changes

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

Loading…
Cancel
Save