From 438cc2456c6e75486119ebc6745c802421346e96 Mon Sep 17 00:00:00 2001 From: Mooshieblob1 Date: Tue, 21 Apr 2026 17:09:39 +0800 Subject: [PATCH] v0.9.8: Fix lockfile mismatch, dependency updates, Svelte 5 reactivity fixes --- CHANGELOG.md | 5 ++++- RELEASE_NOTES.md | 5 ++++- package-lock.json | 14 +++++++------- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aab9b6..c680fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog -## What's New in v0.9.7 +## What's New in v0.9.8 + +### Build Fix +- **Fixed `npm ci` lockfile mismatch** — `package-lock.json` was out of sync with `package.json` after the TypeScript 6.0.3 upgrade, causing the v0.9.7 release workflow to fail. The lockfile is now committed in sync. ### Dependency Updates - **rand 0.10.1** — soundness bug fix (rust-random/rand#1763); no API changes diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2ae8a6a..2d9d831 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,7 @@ -## What's New in v0.9.7 +## What's New in v0.9.8 + +### Build Fix +- **Fixed `npm ci` lockfile mismatch** — `package-lock.json` was out of sync with `package.json` after the TypeScript 6.0.3 upgrade, causing the v0.9.7 release workflow to fail. The lockfile is now committed in sync. ### Dependency Updates - **rand 0.10.1** — soundness bug fix (rust-random/rand#1763); no API changes diff --git a/package-lock.json b/package-lock.json index e09bd77..a8fc6ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "comfyui-desktop", - "version": "0.7.9", + "version": "0.9.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "comfyui-desktop", - "version": "0.7.9", + "version": "0.9.7", "license": "MIT", "dependencies": { "@tauri-apps/api": "^2", @@ -24,14 +24,14 @@ "svelte-konva": "^1.0.1" }, "devDependencies": { - "@sveltejs/vite-plugin-svelte": "^5", + "@sveltejs/vite-plugin-svelte": "^5.1.1", "@tailwindcss/vite": "^4", "@tauri-apps/cli": "^2.10.1", "@tsconfig/svelte": "^5.0.8", "svelte": "^5", "svelte-check": "^4", "tailwindcss": "^4", - "typescript": "^5", + "typescript": "^6.0.3", "vite": "^6" } }, @@ -2406,9 +2406,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", "dev": true, "license": "Apache-2.0", "bin": { diff --git a/package.json b/package.json index 8922682..3e3f243 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "comfyui-desktop", "private": true, "license": "MIT", - "version": "0.9.7", + "version": "0.9.8", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b21295f..c1349ab 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comfyui-desktop" -version = "0.9.7" +version = "0.9.8" edition = "2021" license = "MIT" default-run = "comfyui-desktop" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 14c197a..ce6459a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/nicerlab/files/main/tauri/tauri.conf.json.schema", "productName": "MooshieUI", - "version": "0.9.7", + "version": "0.9.8", "identifier": "com.mooshieui.desktop", "build": { "frontendDist": "../dist",