chore: upgrade beads to v0.56.1 with Dolt backend#180
Merged
nvandessel merged 1 commit intomainfrom Feb 28, 2026
Merged
Conversation
Migrated from SQLite (v0.49.0) to Dolt backend (v0.56.1). Dolt provides git-like version control for the issue database, enabling bd history, bd diff, and branch-aware issue tracking. - Installed Dolt v1.83.0, bd v0.56.1 (from GitHub release) - Migrated 150 issues from SQLite to Dolt server (127.0.0.1:3307) - Updated AGENTS.md with Dolt workflow (bd dolt commit/push/pull) - Removed stale export-state files (replaced by Dolt sync) - Updated .beads/.gitignore for Dolt artifacts - Updated git hooks to v0.56.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Greptile SummarySuccessfully migrated beads issue tracking from SQLite (v0.49.0) to Dolt backend (v0.56.1). This enables version history tracking with Key changes:
Migration validation:
The changes are straightforward infrastructure updates with proper testing validation. Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| .beads/config.yaml | Simplified from 60+ lines of commented documentation to 2-line Dolt mode config |
| .beads/.gitignore | Updated to ignore Dolt files instead of SQLite, added export-state/ to gitignore |
| .beads/metadata.json | Updated backend from SQLite to Dolt with server configuration (port 3307) |
| .beads/README.md | Updated sync command from bd sync to bd dolt push |
| AGENTS.md | Updated beads commands to use Dolt workflow (bd dolt commit/push, bd history, bd diff) |
Last reviewed commit: 9e560d9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Dolt Server Setup
The Dolt server runs at
127.0.0.1:3307with data stored at~/.dolt-data/beads. Start it with:Test plan
bd countreturns 150 issuesbd list --limit 5shows correct issuesbd history <id>shows version history (Dolt feature)bd doctorpasses (1 cosmetic error: server mode lacks.beads/dolt/dir, expected)🤖 Generated with Claude Code