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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ Format follows [Keep a Changelog](https://keepachangelog.com/). Versions follow

---

## [0.8.1] - 2026-04-10

### Changed

- **@opencode-ai/sdk and plugin upgrade** (dependency):
- Upgrade @opencode-ai/plugin: 1.3.14 → 1.4.3
- Upgrade @opencode-ai/sdk: 1.3.14 → 1.4.3
- Evidence:
- Spec: N/A (dependency bump)
- Code: package.json, Dockerfile.opencode (OpenCode 1.4.3)
- Tests: test:verify (199 pass), test:e2e (all pass)
- Surface: internal-dependency
- Fixes N/A

---

## [0.8.0] - 2026-04-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.opencode
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ripgrep \
&& rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://opencode.ai/install | bash -s -- --version 1.3.14
RUN curl -fsSL https://opencode.ai/install | bash -s -- --version 1.4.3

ENV PATH="/root/.opencode/bin:${PATH}"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,5 @@ See [CHANGELOG.md](CHANGELOG.md) for all changes.
- **Issues**: Submit errors or requests on [GitHub Issues](https://github.com/tryweb/lancedb-opencode-pro/issues).
- **License**: MIT License - see [LICENSE](LICENSE).

**Last Updated**: 2026-04-09
**Latest Version**: v0.8.0
**Last Updated**: 2026-04-10
**Latest Version**: v0.8.1
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,5 +192,5 @@ _[舊版歷史請參閱 CHANGELOG.md]_
- **報告問題**: 軟體錯誤回報或功能請求,請至 [GitHub Issues](https://github.com/tryweb/lancedb-opencode-pro/issues) 提交。
- **授權協議**: MIT License - 詳見 [LICENSE](LICENSE)。

**最後更新**: 2026-04-09
**最新版本**: v0.8.0
**最後更新**: 2026-04-10
**最新版本**: v0.8.1
8 changes: 4 additions & 4 deletions bun.lock

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

4 changes: 4 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[test]
# Exclude compiled JS output (dist-test/) - these are run via node --test in package.json scripts.
# Excluding benchmark tests - they require a high timeout and are run via benchmark:latency script.
pathIgnorePatterns = ["dist-test/**", "test/benchmark/**"]
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lancedb-opencode-pro",
"version": "0.8.0",
"version": "0.8.1",
"description": "LanceDB-backed long-term memory provider for OpenCode",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -57,8 +57,8 @@
},
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"@opencode-ai/plugin": "1.3.14",
"@opencode-ai/sdk": "1.3.14"
"@opencode-ai/plugin": "1.4.3",
"@opencode-ai/sdk": "1.4.3"
},
"devDependencies": {
"@types/node": "^22.13.9",
Expand All @@ -69,4 +69,4 @@
"test": "test"
},
"author": ""
}
}
2 changes: 1 addition & 1 deletion test/unit/task-type.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from "node:assert";
import test from "node:test";

const CODING_KEYWORDS = ["bug", "error", "function", "refactor", "implement", "fix", "code", "class", "module", "import", "export", "async", "await", "typescript", "javascript", "python", "debug", "stack", "trace"];
const DOCS_KEYWORDS = ["document", "readme", "explain", "describe", "what is", "how to", "guide", "tutorial", "reference", "api", "specification", "write", "create doc"];
const DOCS_KEYWORDS = ["document", "readme", "explain", "describe", "guide", "tutorial", "reference", "api", "specification", "write", "create doc"];
const REVIEW_KEYWORDS = ["review", "pr", "pull request", "check", "approve", "reject", "comment", "feedback", "lgtm", "nitpick"];
const RELEASE_KEYWORDS = ["deploy", "release", "version", "build", "publish", "npm", "docker", "ci", "cd", "pipeline", "rollback"];

Expand Down