You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adapt to agentdb 1.2.0 breaking change: Collection read methods (findOne, find, findAll, count) are now async. Add await to all 10 call sites. findTask() becomes async, cascading to all callers.
Add arrayIndexes on tags and depends for O(1) $contains lookups.
Copy file name to clipboardExpand all lines: .claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "backlog",
3
-
"version": "2.0.2",
3
+
"version": "2.1.0",
4
4
"description": "Persistent, cross-session task management for Claude Code. Tasks survive sessions so work started by one agent can be picked up by another.",
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,14 @@
1
1
# Changelog
2
2
3
+
## 2.1.0 (2026-04-11)
4
+
5
+
### Changed
6
+
-**Upgraded `@backloghq/agentdb` from 1.1.1 to 1.2.0** — adapts to async Collection read methods (`findOne`, `find`, `findAll`, `count`). All engine read paths now `await` these calls, enabling future disk-backed storage mode.
7
+
-**`findTask()` is now async** — cascades `await` to all callers: `taskCommand`, `writeDoc`, `readDoc`, `deleteDoc`, `duplicateTask`.
8
+
9
+
### Added
10
+
-**Array indexes on `tags` and `depends`** — uses agentdb's new `arrayIndexes` schema option for O(1) `$contains` lookups. Tag filters (`+bug`, `-old`) and dependency checks are now index-accelerated instead of full-scan.
0 commit comments