Version Packages (next) (#12164)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12188/head svelte@5.0.0-next.166
github-actions[bot] 6 months ago committed by GitHub
parent 5811236ba5
commit 872906c4f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -42,6 +42,7 @@
"breezy-carrots-flash", "breezy-carrots-flash",
"breezy-rules-beg", "breezy-rules-beg",
"breezy-waves-camp", "breezy-waves-camp",
"bright-berries-smell",
"bright-falcons-float", "bright-falcons-float",
"bright-peas-juggle", "bright-peas-juggle",
"bright-snakes-sing", "bright-snakes-sing",
@ -126,6 +127,7 @@
"eighty-bikes-camp", "eighty-bikes-camp",
"eighty-days-cheat", "eighty-days-cheat",
"eighty-lizards-notice", "eighty-lizards-notice",
"eleven-avocados-walk",
"eleven-beers-yell", "eleven-beers-yell",
"eleven-cycles-applaud", "eleven-cycles-applaud",
"eleven-hounds-pump", "eleven-hounds-pump",
@ -133,6 +135,7 @@
"empty-bulldogs-exercise", "empty-bulldogs-exercise",
"empty-coins-build", "empty-coins-build",
"empty-crabs-think", "empty-crabs-think",
"empty-files-prove",
"empty-flowers-change", "empty-flowers-change",
"empty-geckos-pretend", "empty-geckos-pretend",
"empty-horses-tell", "empty-horses-tell",
@ -569,6 +572,7 @@
"ten-teachers-travel", "ten-teachers-travel",
"ten-ties-repair", "ten-ties-repair",
"ten-worms-reflect", "ten-worms-reflect",
"tender-lemons-judge",
"tender-rocks-walk", "tender-rocks-walk",
"thick-cycles-rule", "thick-cycles-rule",
"thick-pans-tell", "thick-pans-tell",
@ -631,6 +635,7 @@
"wicked-doors-train", "wicked-doors-train",
"wicked-hairs-cheer", "wicked-hairs-cheer",
"wicked-wasps-allow", "wicked-wasps-allow",
"wicked-ways-reply",
"wild-foxes-wonder", "wild-foxes-wonder",
"wild-moose-compare", "wild-moose-compare",
"wise-apples-care", "wise-apples-care",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.166
### Patch Changes
- fix: remove correct event listener from document ([#12101](https://github.com/sveltejs/svelte/pull/12101))
- fix: correctly serialize object assignment expressions ([#12175](https://github.com/sveltejs/svelte/pull/12175))
- fix: robustify migration script around indentation and comments ([#12176](https://github.com/sveltejs/svelte/pull/12176))
- fix: improve await block behaviour in non-runes mode ([#12179](https://github.com/sveltejs/svelte/pull/12179))
- fix: improve select handling of dynamic value with placeholders ([#12181](https://github.com/sveltejs/svelte/pull/12181))
## 5.0.0-next.165 ## 5.0.0-next.165
### 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.165", "version": "5.0.0-next.166",
"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.165'; export const VERSION = '5.0.0-next.166';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save