chore(release): v0.47.2
- Dolt backend (experimental) - bd show --children flag - NixOS support improvements - Fix redirect + sync-branch incompatibility - Fix doctor project-level settings detection - Fix contributor routing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
committed by
Steve Yegge
parent
39dbe90ade
commit
159114563b
@@ -9,7 +9,7 @@
|
||||
"name": "beads",
|
||||
"source": "./claude-plugin",
|
||||
"description": "AI-supervised issue tracker for coding workflows",
|
||||
"version": "0.47.1"
|
||||
"version": "0.47.2"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
39
CHANGELOG.md
39
CHANGELOG.md
@@ -7,6 +7,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.47.2] - 2026-01-14
|
||||
|
||||
### Added
|
||||
|
||||
- **Dolt backend (experimental)** - Version-controlled issue storage with time-travel
|
||||
- `bd init --backend=dolt` enables Dolt-based storage
|
||||
- Full version history for issues with branch/merge semantics
|
||||
- See docs/DOLT.md for migration guide
|
||||
|
||||
- **`bd show --children` flag** - Display child issues inline with parent
|
||||
- Shows hierarchical structure in issue details
|
||||
|
||||
- **Comprehensive NixOS support** - Improved Nix flake and home-manager integration
|
||||
- Better daemon handling in Nix environments
|
||||
- Updated flake.nix with proper dependencies
|
||||
|
||||
### Changed
|
||||
|
||||
- **Release workflow modernized** - bump-version.sh replaced with molecule pointer
|
||||
- Use `bd mol wisp beads-release --var version=X.Y.Z` for releases
|
||||
- New `scripts/update-versions.sh` for quick local version bumps
|
||||
|
||||
### Fixed
|
||||
|
||||
- **Redirect + sync-branch incompatibility** - bd sync works correctly in redirected repos (bd-wayc3)
|
||||
- Worktree git status failures resolved
|
||||
- Proper handling of .beads/redirect during sync operations
|
||||
|
||||
- **Doctor project-level settings** - Detects plugins/hooks/MCP in .claude/settings.json
|
||||
- No longer misses project-scoped configurations
|
||||
|
||||
- **Contributor routing** - `bd init --contributor` correctly sets up routing (#1088)
|
||||
- Fork workflows now properly configure sync.remote=upstream
|
||||
|
||||
### Documentation
|
||||
|
||||
- **EXTENDING.md deprecated** - Custom SQLite tables approach deprecated for Dolt migration
|
||||
- External tools pattern recommended for integrations
|
||||
|
||||
## [0.47.1] - 2026-01-12
|
||||
|
||||
### Added
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "beads",
|
||||
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
|
||||
"version": "0.47.1",
|
||||
"version": "0.47.2",
|
||||
"author": {
|
||||
"name": "Steve Yegge",
|
||||
"url": "https://github.com/steveyegge"
|
||||
|
||||
@@ -296,6 +296,20 @@ type VersionChange struct {
|
||||
|
||||
// versionChanges contains agent-actionable changes for recent versions
|
||||
var versionChanges = []VersionChange{
|
||||
{
|
||||
Version: "0.47.2",
|
||||
Date: "2026-01-14",
|
||||
Changes: []string{
|
||||
"NEW: Dolt backend (experimental) - bd init --backend=dolt for version-controlled storage",
|
||||
"NEW: bd show --children flag - Display child issues inline with parent",
|
||||
"NEW: Comprehensive NixOS support - Improved flake and home-manager integration",
|
||||
"FIX: Redirect + sync-branch incompatibility - bd sync works in redirected repos (bd-wayc3)",
|
||||
"FIX: Doctor project-level settings - Detects plugins/hooks/MCP in .claude/settings.json",
|
||||
"FIX: Contributor routing - bd init --contributor correctly sets up routing (#1088)",
|
||||
"CHANGED: Release workflow modernized - bump-version.sh replaced with molecule pointer",
|
||||
"DOCS: EXTENDING.md deprecated - Custom SQLite tables approach deprecated for Dolt migration",
|
||||
},
|
||||
},
|
||||
{
|
||||
Version: "0.47.1",
|
||||
Date: "2026-01-12",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) post-checkout hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) post-merge hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) pre-commit hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) pre-push hook - thin shim
|
||||
#
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
|
||||
var (
|
||||
// Version is the current version of bd (overridden by ldflags at build time)
|
||||
Version = "0.47.1"
|
||||
Version = "0.47.2"
|
||||
// Build can be set via ldflags at compile time
|
||||
Build = "dev"
|
||||
// Commit and branch the git revision the binary was built from (optional ldflag)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ pkgs, self }:
|
||||
pkgs.buildGoModule {
|
||||
pname = "beads";
|
||||
version = "0.47.1";
|
||||
version = "0.47.2";
|
||||
|
||||
src = self;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "beads-mcp"
|
||||
version = "0.47.1"
|
||||
version = "0.47.2"
|
||||
description = "MCP server for beads issue tracker."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
@@ -66,7 +66,7 @@ warn_return_any = false
|
||||
check_untyped_defs = false
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "0.47.1"
|
||||
target-version = "0.47.2"
|
||||
line-length = 115
|
||||
|
||||
[tool.ruff.lint]
|
||||
|
||||
@@ -4,4 +4,4 @@ This package provides an MCP (Model Context Protocol) server that exposes
|
||||
beads (bd) issue tracker functionality to MCP Clients.
|
||||
"""
|
||||
|
||||
__version__ = "0.47.1"
|
||||
__version__ = "0.47.2"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@beads/bd",
|
||||
"version": "0.47.1",
|
||||
"version": "0.47.2",
|
||||
"description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
|
||||
"main": "bin/bd.js",
|
||||
"bin": {
|
||||
|
||||
Reference in New Issue
Block a user