Version Packages (next) (#11554)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11559/head svelte@5.0.0-next.128
github-actions[bot] 8 months ago committed by GitHub
parent 43ad72b1ce
commit 18f61a575f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -102,6 +102,7 @@
"eleven-cycles-applaud", "eleven-cycles-applaud",
"empty-bags-heal", "empty-bags-heal",
"empty-bulldogs-exercise", "empty-bulldogs-exercise",
"empty-coins-build",
"empty-crabs-think", "empty-crabs-think",
"empty-geckos-pretend", "empty-geckos-pretend",
"empty-tools-share", "empty-tools-share",
@ -110,6 +111,7 @@
"fair-pianos-talk", "fair-pianos-talk",
"fair-spies-repeat", "fair-spies-repeat",
"famous-falcons-melt", "famous-falcons-melt",
"famous-kiwis-thank",
"famous-knives-sneeze", "famous-knives-sneeze",
"famous-pants-pay", "famous-pants-pay",
"fast-penguins-matter", "fast-penguins-matter",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.128
### Patch Changes
- fix: improved $inspect handling of reactive Map/Set/Date ([#11553](https://github.com/sveltejs/svelte/pull/11553))
- fix: adjust heuristics for effect_update_depth_exceeded ([#11557](https://github.com/sveltejs/svelte/pull/11557))
## 5.0.0-next.127 ## 5.0.0-next.127
### 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.127", "version": "5.0.0-next.128",
"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.127'; export const VERSION = '5.0.0-next.128';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save