@planu/cli 4.3.8 → 4.3.9
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 +12 -1
- package/dist/engine/hooks/file-watcher.js +1 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [4.3.9] - 2026-05-25
|
|
2
|
+
|
|
3
|
+
**Tarball SHA-256:** `a47146af1f2f8e695247fb6ee92cc8da8de00b2ab7967734a7faade7f3659aeb`
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
- fix: keep MCP stdio output JSON-only
|
|
7
|
+
|
|
8
|
+
### Chores
|
|
9
|
+
- chore: sync release banner version
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [4.3.5] - 2026-05-24
|
|
2
13
|
|
|
3
14
|
### Features
|
|
@@ -3948,4 +3959,4 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) · Versioning:
|
|
|
3948
3959
|
- Mermaid diagram generation (architecture, sequence, state machine, ER, data flow)
|
|
3949
3960
|
- Multi-language i18n (EN/ES/PT) for generated specs
|
|
3950
3961
|
- Clean Architecture (hexagonal) — engine, tools, storage, types layers
|
|
3951
|
-
- 10,857 tests with ≥95% coverage
|
|
3962
|
+
- 10,857 tests with ≥95% coverage
|
|
@@ -108,8 +108,7 @@ export class FileWatcher extends EventEmitter {
|
|
|
108
108
|
}
|
|
109
109
|
try {
|
|
110
110
|
if (isNativeActive()) {
|
|
111
|
-
|
|
112
|
-
console.log('[Planu-RS] Starting high-performance Rust file watcher');
|
|
111
|
+
console.error('[Planu-RS] Starting high-performance Rust file watcher');
|
|
113
112
|
startNativeWatcher(this.rootDir, (err, filename) => {
|
|
114
113
|
if (err || !filename || this.closed) {
|
|
115
114
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planu/cli",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.9",
|
|
4
4
|
"description": "Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"packageName": "@planu/core"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@planu/core-darwin-arm64": "4.3.
|
|
36
|
-
"@planu/core-darwin-x64": "4.3.
|
|
37
|
-
"@planu/core-linux-arm64-gnu": "4.3.
|
|
38
|
-
"@planu/core-linux-arm64-musl": "4.3.
|
|
39
|
-
"@planu/core-linux-x64-gnu": "4.3.
|
|
40
|
-
"@planu/core-linux-x64-musl": "4.3.
|
|
41
|
-
"@planu/core-win32-arm64-msvc": "4.3.
|
|
42
|
-
"@planu/core-win32-x64-msvc": "4.3.
|
|
35
|
+
"@planu/core-darwin-arm64": "4.3.9",
|
|
36
|
+
"@planu/core-darwin-x64": "4.3.9",
|
|
37
|
+
"@planu/core-linux-arm64-gnu": "4.3.9",
|
|
38
|
+
"@planu/core-linux-arm64-musl": "4.3.9",
|
|
39
|
+
"@planu/core-linux-x64-gnu": "4.3.9",
|
|
40
|
+
"@planu/core-linux-x64-musl": "4.3.9",
|
|
41
|
+
"@planu/core-win32-arm64-msvc": "4.3.9",
|
|
42
|
+
"@planu/core-win32-x64-msvc": "4.3.9"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=24.0.0"
|