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

---

## [0.8.3] - 2026-04-17

### Changed

- **@opencode-ai/sdk and plugin upgrade** (dependency):
- Upgrade @opencode-ai/plugin: 1.4.3 → 1.4.7
- Upgrade @opencode-ai/sdk: 1.4.3 → 1.4.7
- Evidence:
- Spec: docs/OPENCODE_COMPATIBILITY.md
- Code: package.json, test/regression/plugin.test.ts
- Tests: npm run verify (199 pass)
- Surface: internal-dependency

### Fixed

- **Test mock compatibility with SDK 1.4.7** (internal):
- Updated ToolContext.ask() mock to use Effect.void instead of Promise<void>
- Added bun installation to Dockerfile for test execution
- Evidence:
- Spec: N/A (test fix)
- Code: test/regression/plugin.test.ts, Dockerfile
- Tests: npm run test (199 pass)
- Surface: internal-test

### Documentation

- **OpenCode SDK compatibility documentation** (docs):
- Added docs/OPENCODE_COMPATIBILITY.md with SDK version history
- Documented SDK 1.4.4-1.4.7 breaking change (Effect type)
- Evidence:
- Spec: N/A (documentation)
- Code: docs/OPENCODE_COMPATIBILITY.md
- Tests: N/A
- Surface: documentation

---

## [0.8.2] - 2026-04-11

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ FROM node:${NODE_VERSION}-bookworm

WORKDIR /workspace

# Install bun for testing
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:$PATH"

COPY package.json tsconfig.json tsconfig.test.json README.md ./
COPY src ./src
COPY test ./test
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.4.3
RUN curl -fsSL https://opencode.ai/install | bash -s -- --version 1.4.7

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

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**LanceDB-backed long-term memory provider for OpenCode**

[![npm version](https://img.shields.io/npm/v/lancedb-opencode-pro)](https://www.npmjs.com/package/lancedb-opencode-pro)
[![OpenCode](https://img.shields.io/badge/OpenCode-1.4.3-blue)](https://opencode.ai)
[![OpenCode](https://img.shields.io/badge/OpenCode-1.4.7-blue)](https://opencode.ai)

Welcome to **lancedb-opencode-pro**! This plugin empowers OpenCode with a durable, long-term memory system powered by LanceDB.

Expand Down Expand Up @@ -182,6 +182,8 @@ Alternatively, install via `.tgz` release asset or build from source. See [Insta

## 🗺️ Version History

- **v0.8.3**: @opencode-ai/sdk and plugin upgrade to 1.4.7, Effect type mock fix, SDK compatibility docs
- **v0.8.2**: Plugin version mismatch fix (internal)
- **v0.8.1**: @opencode-ai/sdk and plugin upgrade to 1.4.3, bunfig.toml test isolation fix
- **v0.8.0**: Structured Logging via client.app.log() per OpenCode best practices, Test Environment Isolation Fix
- **v0.7.0**: OpenCode SDK v1.3.14 Compatibility, Node 22 memory_search Race Condition Fix
Expand Down Expand Up @@ -209,5 +211,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-10
**Latest Version**: v0.8.1
**Last Updated**: 2026-04-17
**Latest Version**: v0.8.3
6 changes: 4 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ docker compose exec opencode-dev npm run verify:full

## 🗺️ 版本歷史

- **v0.8.3**: @opencode-ai/sdk 與 plugin 升級至 1.4.7、Effect 型別 mock 修復、SDK 相容性文檔
- **v0.8.2**: 插件版本不一致修復(內部)
- **v0.8.1**: @opencode-ai/sdk 與 plugin 升級至 1.4.3,bunfig.toml 測試隔離修復
- **v0.8.0**: 結構化日誌 (client.app.log()) 遵循 OpenCode 最佳實踐、測試環境隔離修復
- **v0.7.0**: OpenCode SDK v1.3.14 相容性、Node 22 memory_search 競爭條件修復
Expand Down Expand Up @@ -193,5 +195,5 @@ _[舊版歷史請參閱 CHANGELOG.md]_
- **報告問題**: 軟體錯誤回報或功能請求,請至 [GitHub Issues](https://github.com/tryweb/lancedb-opencode-pro/issues) 提交。
- **授權協議**: MIT License - 詳見 [LICENSE](LICENSE)。

**最後更新**: 2026-04-10
**最新版本**: v0.8.1
**最後更新**: 2026-04-17
**最新版本**: v0.8.3
50 changes: 46 additions & 4 deletions bun.lock

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

Loading