From 3ebb18bdac47a0226eb4cecc5cb80051e11ed516 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Thu, 16 Apr 2026 13:01:54 +0800 Subject: [PATCH] # Release version 0.8.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(process): comprehensive cross-platform Node.js path discovery, supporting 9 version managers (nvm, nvm-windows, fnm, volta, asdf, mise, n, Homebrew, Scoop) across macOS, Linux, and Windows for reliable agent preflight. - fix(process): use semver-aware sorting for Node.js version selection to prevent older versions being chosen over newer ones (e.g. v20.9 incorrectly ranked above v20.11). - fix(process): harden Node.js path discovery for production readiness with improved error handling and edge-case resilience. - fix(settings): remove ineffective max reasoning effort level for Claude Code. - fix(ci): replace softprops/action-gh-release with gh CLI for server asset upload. - fix(windows): improve fnm Node path discovery with correct platform-specific default directories. (thanks @Kwensiu, #75) ----------------------------- # 发布版本 0.8.9 - 功能(进程):全面的跨平台 Node.js 路径发现,支持 9 种版本管理器(nvm、nvm-windows、fnm、volta、asdf、mise、n、Homebrew、Scoop),覆盖 macOS、Linux 和 Windows,确保代理预检可靠找到 Node.js; - 修复(进程):使用语义化版本排序选择 Node.js 版本,避免旧版本被错误优先选择(如 v20.9 被排在 v20.11 之前); - 修复(进程):增强 Node.js 路径发现的生产环境健壮性,改进错误处理和边界情况适应能力; - 修复(设置):移除 Claude Code 中无效的最大推理力度级别选项; - 修复(CI):将服务器产物上传从 softprops/action-gh-release 替换为 gh CLI; - 修复(Windows):改进 fnm Node 路径发现,使用正确的平台特定默认目录。(感谢 @Kwensiu,#75) --- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 85c873e..a33d44d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.8", + "version": "0.8.9", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index f984f1a..f1594a7 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.8" +version = "0.8.9" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 1129f27..4a1f34a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.8" +version = "0.8.9" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b8fef98..5e860b5 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "codeg", - "version": "0.8.8", + "version": "0.8.9", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",