file-organizer-mcp 3.2.4 โ 3.2.6
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 +27 -0
- package/MIGRATION.md +365 -365
- package/README.md +2 -2
- package/dist/src/config.d.ts +2 -1
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +12 -3
- package/dist/src/config.js.map +1 -1
- package/dist/src/debate/dashboard.js +199 -199
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/dist/src/services/duplicate-finder.service.d.ts.map +1 -1
- package/dist/src/services/duplicate-finder.service.js +10 -3
- package/dist/src/services/duplicate-finder.service.js.map +1 -1
- package/dist/src/tui/client-detector.d.ts +1 -1
- package/dist/src/tui/client-detector.d.ts.map +1 -1
- package/dist/src/tui/client-detector.js +364 -201
- package/dist/src/tui/client-detector.js.map +1 -1
- package/dist/src/tui/setup-wizard.d.ts.map +1 -1
- package/dist/src/tui/setup-wizard.js +247 -117
- package/dist/src/tui/setup-wizard.js.map +1 -1
- package/dist/src/utils/diagnostics.js +6 -6
- package/dist/src/utils/diagnostics.js.map +1 -1
- package/package.json +1 -1
- package/scripts/prepare.cjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.2.6] - 2026-02-10
|
|
4
|
+
|
|
5
|
+
### ๐ Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **Setup Wizard**: Fixed 14 critical bugs from security audit
|
|
8
|
+
- Added robust path resolution with `findPackageRoot()` and `getPackageRoot()`
|
|
9
|
+
- Added try/catch around all filesystem operations
|
|
10
|
+
- Added validation for user input paths
|
|
11
|
+
- Fixed async/await consistency issues
|
|
12
|
+
- Added graceful handling for prompt cancellations
|
|
13
|
+
|
|
14
|
+
- **Client Detector**: Fixed 14 critical bugs from security audit
|
|
15
|
+
- Added config write locking to prevent concurrent access
|
|
16
|
+
- Added atomic file writes (temp file + rename pattern)
|
|
17
|
+
- Fixed LOCALAPPDATA undefined checks for Windows
|
|
18
|
+
- Added null checks for config paths
|
|
19
|
+
- Fixed Continue client config format
|
|
20
|
+
- Added deep merge for server configurations
|
|
21
|
+
- Added JSON.parse validation and error handling
|
|
22
|
+
|
|
23
|
+
### ๐งช Testing
|
|
24
|
+
|
|
25
|
+
- Fixed flaky `cron-utils.test.ts` with fixed time values
|
|
26
|
+
- All 48 test suites passing (630 tests)
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
3
30
|
## [3.2.0] - 2026-02-10
|
|
4
31
|
|
|
5
32
|
### โจ New Features
|