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

@ -1,5 +1,23 @@
# svelte # 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 ## 5.0.0-next.4
### 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.4", "version": "5.0.0-next.5",
"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.4'; export const VERSION = '5.0.0-next.5';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save