Release v0.11.0

This commit is contained in:
Mario Zechner 2025-11-29 01:03:31 +01:00
parent 66517b72e9
commit 532bb69ed6
10 changed files with 342 additions and 38 deletions

View file

@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.11.0] - 2025-11-29
### Added
@ -15,6 +15,7 @@
- **Prompt Restoration on API Key Error**: When submitting a message fails due to missing API key, the prompt is now restored to the editor instead of being lost. ([#77](https://github.com/badlogic/pi-mono/issues/77))
- **File `@` Autocomplete Performance**: Fixed severe UI jank when using `@` for file attachment in large repositories. The file picker now uses `fd` (a fast file finder) instead of synchronous directory walking with minimatch. On a 55k file repo, search time dropped from ~900ms to ~10ms per keystroke. If `fd` is not installed, it will be automatically downloaded to `~/.pi/agent/tools/` on first use. ([#69](https://github.com/badlogic/pi-mono/issues/69))
- **File Selector Styling**: Selected items in file autocomplete (`@` and Tab) now use consistent accent color for the entire line instead of mixed colors.
## [0.10.2] - 2025-11-27

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-coding-agent",
"version": "0.10.2",
"version": "0.11.0",
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
"type": "module",
"bin": {
@ -22,9 +22,9 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@mariozechner/pi-agent-core": "^0.10.2",
"@mariozechner/pi-ai": "^0.10.2",
"@mariozechner/pi-tui": "^0.10.2",
"@mariozechner/pi-agent-core": "^0.11.0",
"@mariozechner/pi-ai": "^0.11.0",
"@mariozechner/pi-tui": "^0.11.0",
"chalk": "^5.5.0",
"diff": "^8.0.2",
"glob": "^11.0.3"