@braingrid/cli 0.2.52 → 0.2.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/cli.js +230 -55
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.53] - 2026-02-25
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Structured hook logging** — new leveled log format (`HH:MM:SS [LEVEL] hook | event | details`) with INFO/WARN/ERROR levels across all build hook scripts
|
|
15
|
+
- **REQ-X prefixed temp files** — build-debug.log, build-verification, and verify-prev-unchecked files now use REQ-X prefix for multi-build isolation
|
|
16
|
+
- **Build session delimiter** — log files show `=== BUILD REQ-X started ... ===` separator when a new build begins
|
|
17
|
+
- **Comprehensive hook coverage** — every hook now logs start, decision, and early exits; `post-task-update-prompt` previously had zero logging
|
|
18
|
+
- **CLI debug logging** — new `cli-logger.ts` utility with structured debug logs for `braingrid init` and `braingrid setup` commands (writes to `.braingrid/temp/init-debug.log` and `.braingrid/temp/setup-debug.log`)
|
|
19
|
+
- **GitHub API logging** — log retries, auth fallbacks, and file fetches in setup-service
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- **Silent error swallowing** — five catch blocks in init/setup handlers that discarded errors now log them with full context
|
|
24
|
+
- **Session delimiter race** — delimiter check now runs before `exec 2>>` redirect which was creating the file prematurely
|
|
25
|
+
- **Empty REQ_ID fallback** — `verify-acceptance-criteria` falls back to unprefixed paths when sentinel is empty instead of producing malformed paths
|
|
26
|
+
- **Double initLogger leak** — guard against file descriptor leak when init triggers setup (which re-initializes the logger)
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- **Log noise reduction** — removed noisy SKIP log entries from sync-braingrid-task for non-status TaskUpdate calls
|
|
31
|
+
|
|
10
32
|
## [0.2.52] - 2026-02-24
|
|
11
33
|
|
|
12
34
|
### Fixed
|