Version Packages (next) (#11503)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11521/head svelte@5.0.0-next.125
github-actions[bot] 8 months ago committed by GitHub
parent b1b2dddc3b
commit 4fb4365567
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -50,6 +50,7 @@
"chatty-sloths-allow",
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilled-seas-jog",
"chilly-dolphins-lick",
"chilly-rocks-hug",
"chilly-snakes-scream",
@ -62,6 +63,7 @@
"cool-actors-tan",
"cool-ants-leave",
"cool-comics-marry",
"cool-jobs-scream",
"cool-peas-lick",
"cool-poems-watch",
"cool-rabbits-tickle",
@ -154,6 +156,7 @@
"good-pianos-jump",
"good-plums-type",
"good-rivers-yawn",
"gorgeous-monkeys-carry",
"gorgeous-singers-rest",
"great-fans-unite",
"great-icons-retire",
@ -372,6 +375,7 @@
"sixty-pandas-rush",
"slimy-clouds-talk",
"slimy-laws-explode",
"slimy-onions-approve",
"slimy-walls-draw",
"slow-beds-shave",
"slow-chefs-dream",
@ -450,6 +454,7 @@
"thirty-impalas-repair",
"thirty-pears-hug",
"thirty-wombats-relax",
"three-buses-sleep",
"three-camels-sell",
"three-foxes-relax",
"three-icons-trade",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.125
### Patch Changes
- fix: coerce incremented/decremented sources ([#11506](https://github.com/sveltejs/svelte/pull/11506))
- feat: add support for svelte inspector ([#11514](https://github.com/sveltejs/svelte/pull/11514))
- fix: skip AST analysis of TypeScript AST nodes ([#11513](https://github.com/sveltejs/svelte/pull/11513))
- fix: use import.meta.hot.acceptExports when available to support partial hmr in vite ([#11453](https://github.com/sveltejs/svelte/pull/11453))
- feat: better error for `bind:this` legacy API usage ([#11498](https://github.com/sveltejs/svelte/pull/11498))
## 5.0.0-next.124
### Patch Changes

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

Loading…
Cancel
Save