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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.14.3] - 2026-05-01

### Security

- Remove wildcard CORS (`Access-Control-Allow-Origin: *`) from web server JSON responses. Server binds to `127.0.0.1` by default; wildcard was unnecessary exposure.
- Sanitize API error responses — replace raw `String(error)` with generic `"Internal error"` / `"Internal server error"` across all API handlers. Actual errors still logged server-side for debugging.

### Dependencies

- Update `@ai-sdk/anthropic` 3.0.72 → 3.0.73
- Update `@ai-sdk/openai` 3.0.54 → 3.0.55
- Update `@opencode-ai/plugin` 1.14.30 → 1.14.31
- Update `@opencode-ai/sdk` 1.14.30 → 1.14.31
- Update `ai` 6.0.170 → 6.0.172

## [2.14.2] - 2026-04-30

### Fixed
Expand Down
16 changes: 8 additions & 8 deletions bun.lock

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opencode-mem0",
"version": "2.14.2",
"version": "2.14.3",
"description": "OpenCode plugin that gives coding agents persistent memory using local vector database",
"type": "module",
"main": "dist/plugin.js",
Expand Down Expand Up @@ -52,12 +52,12 @@
},
"homepage": "https://github.com/ZeR020/opencode-mem0#readme",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.72",
"@ai-sdk/openai": "^3.0.54",
"@ai-sdk/anthropic": "^3.0.73",
"@ai-sdk/openai": "^3.0.55",
"@huggingface/transformers": "^4.2.0",
"@opencode-ai/plugin": "^1.14.30",
"@opencode-ai/sdk": "^1.14.30",
"ai": "^6.0.170",
"@opencode-ai/plugin": "^1.14.31",
"@opencode-ai/sdk": "^1.14.31",
"ai": "^6.0.172",
"franc-min": "^6.2.0",
"iso-639-3": "^3.0.1",
"usearch": "^2.25.1",
Expand Down
Loading