chore: bump version to v0.30.1

Update version across all packages:
- Go CLI (cmd/bd/version.go)
- Python MCP server (pyproject.toml, __init__.py)
- npm package (package.json)

Add comprehensive CHANGELOG entry with 14 features, 14 fixes,
security updates, and community contributor credits.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-16 02:00:56 -08:00
parent cab538180b
commit 8c07a4df44
5 changed files with 87 additions and 21 deletions

View File

@@ -7,36 +7,102 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.30.1] - 2025-12-16
### Added ### Added
- **Inline tombstones for soft-delete (bd-vw8)** - **`bd reset` command** (GH#505) - Complete beads removal from a repository
- Deleted issues now become tombstones with `status: "tombstone"` in `issues.jsonl` - Removes `.beads/` directory and all associated data
- Cleans up git hooks installed by beads
- Use `--force` to skip confirmation prompt
- **`bd cleanup --hard` flag** - Bypass tombstone TTL safety
- Immediately removes tombstones regardless of age
- Use when you need to force-clean deleted issues
- **`bd update --type` flag** (GH#522) - Change issue type after creation
- Convert between task, bug, feature, epic types
- Example: `bd update bd-xyz --type epic`
- **`bd q` silent quick-capture mode** (GH#540)
- Capture issues silently without output
- Ideal for scripting and automation
- **`bd sync --check` flag** - Pre-sync integrity checks
- Validates database state before syncing
- Catches potential issues early
- **`bd show` displays dependent issue status** (#583)
- Shows status for all blocked-by and blocking issues
- Better visibility into dependency chains
- **`bd daemon --status` shows config** (#569)
- Displays daemon configuration in status output
- Contributed by @crcatala
- **`bd daemon --stop-all`** - Kill all daemon processes
- Useful for cleanup when multiple daemons are running
- **Auto-disable daemon in git worktrees** (#567)
- Daemon automatically disabled in worktrees for safety
- Prevents database conflicts between worktrees
- **`claude.local.md` support** - Local-only documentation
- Add project notes that won't be committed
- Gitignored by default
- **Auto-add "landing the plane" instructions to AGENTS.md**
- New projects get session-close protocol guidance
- **Inline tombstones for soft-delete** (bd-vw8)
- Deleted issues become tombstones with `status: "tombstone"` in `issues.jsonl`
- Full audit trail: `deleted_at`, `deleted_by`, `delete_reason`, `original_type` - Full audit trail: `deleted_at`, `deleted_by`, `delete_reason`, `original_type`
- TTL-based expiration (default 30 days) with automatic pruning via `bd compact` - TTL-based expiration (default 30 days) with automatic pruning via `bd compact`
- Proper 3-way merge support: fresh tombstones win, expired tombstones allow resurrection - Proper 3-way merge support: fresh tombstones win, expired tombstones allow resurrection
- Replaces the legacy `deletions.jsonl` manifest approach
- **`bd migrate-tombstones` command (bd-8f9)** - **`bd migrate-tombstones` command** (bd-8f9)
- Converts legacy `deletions.jsonl` entries to inline tombstones - Converts legacy `deletions.jsonl` entries to inline tombstones
- Archives old file as `deletions.jsonl.migrated` - Archives old file as `deletions.jsonl.migrated`
- Use `--dry-run` to preview changes
- **Enhanced Git Worktree Support** (bd-737): Comprehensive compatibility improvements for git worktrees using shared database architecture - **Enhanced Git Worktree Support** (bd-737)
- Shared `.beads` database across all worktrees in a repository - Shared `.beads` database across all worktrees
- Worktree-aware database discovery prioritizes main repository - Worktree-aware database discovery
- Git hooks automatically adapt to worktree context - Git hooks automatically adapt to worktree context
- Daemon mode warnings for worktree usage with `--no-daemon` guidance - Documentation in `docs/WORKTREES.md`
- Comprehensive documentation in `docs/WORKTREES.md`
- Worktree lifecycle management with sparse checkout for sync branches
- Automatic detection and user-friendly warnings for worktree conflicts
### Fixed ### Fixed
- **`bd` now finds `.beads` from nested worktrees** (GH#509) - **Multi-hyphen prefix parsing** (GH#405) - Prefixes like `my-cool-project` now work correctly
- When worktrees are nested under the main repo (e.g., `/project/.worktrees/feature/`), - **`bd sync` on sync branch** (GH#519) - Fixed sync when already on the sync branch
`bd` now correctly finds `.beads/` in the parent repo - **Pre-commit hook with removed `.beads`** (GH#483) - No longer blocks commits after beads removal
- Uses `git rev-parse --git-common-dir` to reliably locate the main repository root - **Priority format error messages** (GH#517) - Clearer guidance on P0-P4 format
- Works from any subdirectory within the nested worktree - **Status naming consistency** (GH#444) - Uses `in_progress` everywhere
- **Orphan detection with dots in directory names** (GH#508) - No more false positives
- **Circular error in pre-push hook** (GH#532) - Fixed infinite loop scenario
- **Doctor --fix auto-migrates tombstones** - Automatic migration during repair
- **Daemon detects external DB replacement** (#564) - Contributed by @deblasis
- **Import handles hierarchical hash IDs** (#584) - Contributed by @rsnodgrass
- **Nested worktree detection** (GH#509) - Correctly finds `.beads/` in parent repo
- **Import skips cross-prefix content matches** - Prevents incorrect renames
- **3-way merge tolerates missing issues** - More robust conflict resolution
- **Pre-commit warns instead of failing on flush error** - Graceful degradation
### Security
- **Go toolchain updated to 1.24.11** - Addresses CVEs in standard library
### CI
- **PR check for `.beads/issues.jsonl` changes** - Rejects accidental database commits
### Dependencies
- Bump `github.com/ncruces/go-sqlite3` to 0.30.3
- Bump `github.com/spf13/cobra` to 1.10.2
- Bump `golang.org/x/mod` to 0.31.0
- Bump `golang.org/x/term` to 0.38.0
- Bump `pydantic` to 2.12.5 (beads-mcp)
- Bump `fastmcp` to 2.14.1 (beads-mcp)
## [0.29.0] - 2025-12-03 ## [0.29.0] - 2025-12-03

View File

@@ -14,7 +14,7 @@ import (
var ( var (
// Version is the current version of bd (overridden by ldflags at build time) // Version is the current version of bd (overridden by ldflags at build time)
Version = "0.30.0" Version = "0.30.1"
// Build can be set via ldflags at compile time // Build can be set via ldflags at compile time
Build = "dev" Build = "dev"
// Commit and branch the git revision the binary was built from (optional ldflag) // Commit and branch the git revision the binary was built from (optional ldflag)

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "beads-mcp" name = "beads-mcp"
version = "0.30.0" version = "0.30.1"
description = "MCP server for beads issue tracker." description = "MCP server for beads issue tracker."
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"

View File

@@ -4,4 +4,4 @@ This package provides an MCP (Model Context Protocol) server that exposes
beads (bd) issue tracker functionality to MCP Clients. beads (bd) issue tracker functionality to MCP Clients.
""" """
__version__ = "0.30.0" __version__ = "0.30.1"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@beads/bd", "name": "@beads/bd",
"version": "0.30.0", "version": "0.30.1",
"description": "Beads issue tracker - lightweight memory system for coding agents with native binary support", "description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
"main": "bin/bd.js", "main": "bin/bd.js",
"bin": { "bin": {