diff --git a/CHANGELOG.md b/CHANGELOG.md index 30ee415..37052df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,16 @@ ## Unreleased +## 0.8.1 — 2026-08-07 + - Fix goal auto-continue stalling after session compaction: a continuation claim for a pre-compaction source turn could match the still-visible tail assistant message after compaction and suppress the post-compaction continuation until the user nudged the goal. The claim is now invalidated on - `session.compacted`, so the loop resumes on the next idle. + `session.compacted`, so the loop resumes on the next idle. Contributed by + [@harryzhou2000](https://github.com/harryzhou2000) in + [#58](https://github.com/willytop8/OpenCode-goal-plugin/pull/58). +- Update the bundled `zod` dependency from 4.1.8 to 4.4.3. ## 0.8.0 — 2026-08-06 diff --git a/package-lock.json b/package-lock.json index 8d538e8..fe85f02 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opencode-goal-plugin", - "version": "0.8.0", + "version": "0.8.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "opencode-goal-plugin", - "version": "0.8.0", + "version": "0.8.1", "license": "MIT", "dependencies": { "zod": "4.4.3" diff --git a/package.json b/package.json index 342efa9..a522281 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencode-goal-plugin", - "version": "0.8.0", + "version": "0.8.1", "description": "Durable, guarded goal workflows for OpenCode.", "type": "module", "main": "./src/goal-plugin.js",