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

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

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

Loading…
Cancel
Save