Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/copilot-shell/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions src/copilot-shell/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/copilot-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anolisa/copilot-shell",
"version": "2.0.2",
"version": "2.0.3",
"engines": {
"node": ">=20.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/copilot-shell/packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/copilot-shell/packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading