file-organizer-mcp 3.2.5 โ†’ 3.2.7

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 CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.7] - 2026-02-10
4
+
5
+ ### ๐Ÿšจ CRITICAL FIX: MCP Protocol Compatibility
6
+
7
+ **Fixed stdout pollution breaking Claude connection**
8
+
9
+ - **prepare.cjs**: Changed all `console.log` โ†’ `console.error`
10
+ - **postinstall.cjs**: Changed all `console.log` โ†’ `console.error`
11
+ - **file-organizer-mcp.mjs**: Changed `log()` to use `console.error`
12
+ - **setup-wizard.ts**: All output now routed to stderr
13
+
14
+ **Root Cause:** Installation scripts were outputting colored text to stdout, which Claude's MCP client tried to parse as JSON-RPC, causing "Unexpected token" errors.
15
+
16
+ ### ๐Ÿ› Bug Fixes (from v3.2.6)
17
+
18
+ - **Setup Wizard**: Fixed 14 critical bugs from security audit
19
+ - Added robust path resolution with `findPackageRoot()` and `getPackageRoot()`
20
+ - Added try/catch around all filesystem operations
21
+ - Added validation for user input paths
22
+ - Fixed async/await consistency issues
23
+ - Added graceful handling for prompt cancellations
24
+
25
+ - **Client Detector**: Fixed 14 critical bugs from security audit
26
+ - Added config write locking to prevent concurrent access
27
+ - Added atomic file writes (temp file + rename pattern)
28
+ - Fixed LOCALAPPDATA undefined checks for Windows
29
+ - Added null checks for config paths
30
+ - Fixed Continue client config format
31
+ - Added deep merge for server configurations
32
+ - Added JSON.parse validation and error handling
33
+
34
+ ### ๐Ÿงช Testing
35
+
36
+ - Fixed flaky `cron-utils.test.ts` with fixed time values
37
+ - All 48 test suites passing (630 tests)
38
+
39
+ ---
40
+
3
41
  ## [3.2.0] - 2026-02-10
4
42
 
5
43
  ### โœจ New Features