Skip to content

Commit 21d5da6

Browse files
SimplyLizclaude
andcommitted
release: v9.0.1 — CI shallow-clone fixes
See CHANGELOG for details. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b2ab5be commit 21d5da6

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to CKB will be documented in this file.
44

5+
## [9.0.1] - 2026-04-15
6+
7+
### Fixed
8+
9+
- **`ckb review` in shallow CI clones** — Azure Pipelines, GitHub Actions, and
10+
GitLab default to shallow single-branch checkouts, so `ckb review --base=main`
11+
failed with `exit 128` because the base ref was not present locally. The
12+
review path (and `summarizePr` / `summarizeDiff`) now auto-fetch the base ref
13+
from `origin` when it is missing, falling through to `origin/<branch>`. No
14+
pipeline changes required. No cost for full clones.
15+
- **Opaque git errors**`GitAdapter.executeGitCommand` previously wrapped git
16+
failures as "Git command failed: exit status 128" with git's actual stderr
17+
hidden in a details map. The stderr (e.g. `fatal: bad revision`) is now part
18+
of the error message, making CI failures diagnosable without reproduction.
19+
520
## [9.0.0] - 2026-04-13
621

722
### Added

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package version
66
// go build -ldflags "-X github.com/SimplyLiz/CodeMCP/internal/version.Version=1.0.0 -X github.com/SimplyLiz/CodeMCP/internal/version.Commit=abc123"
77
var (
88
// Version is the semantic version of CKB
9-
Version = "9.0.0"
9+
Version = "9.0.1"
1010

1111
// Commit is the git commit hash (set at build time)
1212
Commit = "unknown"

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tastehub/ckb",
33
"mcpName": "io.github.SimplyLiz/ckb",
4-
"version": "9.0.0",
4+
"version": "9.0.1",
55
"description": "Code intelligence for AI assistants (MCP), CLI, and HTTP API - symbol navigation, impact analysis, architecture",
66
"keywords": [
77
"mcp",

0 commit comments

Comments
 (0)