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

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

Loading…
Cancel
Save