diff --git a/src/copilot-shell/CHANGELOG.md b/src/copilot-shell/CHANGELOG.md index 54da106..6e4053e 100644 --- a/src/copilot-shell/CHANGELOG.md +++ b/src/copilot-shell/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 2.0.3 + +- Migrated config directory from `~/.copilot` to `~/.copilot-shell`. (#78) +- Added API key detection from configured agents with user approval on bootstrap. (#127) +- Added support for configuring multiple custom model providers. (task#80737766) +- Added global API endpoint support for Dashscope. (#133) +- Added custom skill paths support via `settings.json`. (#128) +- Added support for loading skills from extension directories with `cosh-extension.json` compatibility. (#54) +- Added `/bug` command for submitting bug reports. (#122) +- Added sandbox-guard install command with bypass approval flow. (#125) +- Added secret redaction for model output and tool results. (#100) +- Added extensible feature tip banner for first-launch guidance. (#113) +- Added built-in `/dir cd` command for in-session directory navigation. (#19) +- Added session renaming command. (task#80737766) +- Added nvm-aware Node.js detection in `cosh` wrapper script. (#72) +- Added system-level install via `Makefile` with FHS-compliant directory layout. (#72) +- Fixed 24-item limit on `@` file completion menu. (#92) +- Fixed TUI flicker on Qwen OAuth page in limited-height terminals. (#76) +- Fixed left-arrow key not wrapping from line start to previous line end. (#53) +- Fixed irrelevant info display in `/model` command. (#85) +- Fixed credentials encryption support in `settings.json`. (#90) +- Fixed test failure when running as `root` user. (#29) +- Fixed pre-commit hook working directory for lint-staged. (#90) +- Configured Husky hooks and documented pre-commit setup. (#65) + ## 2.0.1 - Renamed OpenAI authentication label to "BaiLian (OpenAI Compatible)" for clarity. diff --git a/src/copilot-shell/package-lock.json b/src/copilot-shell/package-lock.json index 6edc4df..7955317 100644 --- a/src/copilot-shell/package-lock.json +++ b/src/copilot-shell/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anolisa/copilot-shell", - "version": "2.0.2", + "version": "2.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anolisa/copilot-shell", - "version": "2.0.2", + "version": "2.0.3", "workspaces": [ "packages/*" ], @@ -15071,7 +15071,7 @@ }, "packages/cli": { "name": "@copilot-shell/cli", - "version": "2.0.2", + "version": "2.0.3", "dependencies": { "@copilot-shell/core": "file:../core", "@google/genai": "1.30.0", @@ -15186,7 +15186,7 @@ }, "packages/core": { "name": "@copilot-shell/core", - "version": "2.0.2", + "version": "2.0.3", "hasInstallScript": true, "dependencies": { "@alicloud/sysom20231230": "^1.12.0", diff --git a/src/copilot-shell/package.json b/src/copilot-shell/package.json index 6603088..1d8506c 100644 --- a/src/copilot-shell/package.json +++ b/src/copilot-shell/package.json @@ -1,6 +1,6 @@ { "name": "@anolisa/copilot-shell", - "version": "2.0.2", + "version": "2.0.3", "engines": { "node": ">=20.0.0" }, diff --git a/src/copilot-shell/packages/cli/package.json b/src/copilot-shell/packages/cli/package.json index 6e625d2..468df6e 100644 --- a/src/copilot-shell/packages/cli/package.json +++ b/src/copilot-shell/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@copilot-shell/cli", - "version": "2.0.2", + "version": "2.0.3", "description": "Copilot Shell", "type": "module", "main": "dist/index.js", diff --git a/src/copilot-shell/packages/core/package.json b/src/copilot-shell/packages/core/package.json index f2843e8..5559cdb 100644 --- a/src/copilot-shell/packages/core/package.json +++ b/src/copilot-shell/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@copilot-shell/core", - "version": "2.0.2", + "version": "2.0.3", "description": "Copilot Shell Core", "type": "module", "main": "dist/index.js",