memory-journal-mcp 7.7.0 → 7.7.1
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/README.md +1 -1
- package/dist/{chunk-QCQPAF4I.js → chunk-6LPTBIB6.js} +4 -1
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
- package/skills/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.neverinfamous/memory-journal-mcp)
|
|
11
11
|
[](SECURITY.md)
|
|
12
12
|
[](https://github.com/neverinfamous/memory-journal-mcp)
|
|
13
|
-

|
|
14
14
|

|
|
15
15
|

|
|
16
16
|
[](https://github.com/neverinfamous/memory-journal-mcp/actions/workflows/gatekeeper.yml)
|
|
@@ -2190,7 +2190,10 @@ var BackupManager = class {
|
|
|
2190
2190
|
} catch {
|
|
2191
2191
|
}
|
|
2192
2192
|
if (!rollbackSuccess) {
|
|
2193
|
-
throw new Error(
|
|
2193
|
+
throw new Error(
|
|
2194
|
+
`CRITICAL: Database restore failed AND rollback failed. The database may be in an inconsistent state. Your previous database is preserved at: ${oldDbBackupPath}. Original error: ${error instanceof Error ? error.message : String(error)}`,
|
|
2195
|
+
{ cause: error }
|
|
2196
|
+
);
|
|
2194
2197
|
}
|
|
2195
2198
|
await this.ctx.initialize();
|
|
2196
2199
|
throw error;
|
package/dist/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VERSION, DEFAULT_AUDIT_LOG_MAX_SIZE_BYTES, createServer } from './chunk-
|
|
1
|
+
import { VERSION, DEFAULT_AUDIT_LOG_MAX_SIZE_BYTES, createServer } from './chunk-6LPTBIB6.js';
|
|
2
2
|
import { logger } from './chunk-ARLYSFSI.js';
|
|
3
3
|
import { Command } from 'commander';
|
|
4
4
|
import * as path from 'path';
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { VERSION, createServer } from './chunk-
|
|
1
|
+
export { VERSION, createServer } from './chunk-6LPTBIB6.js';
|
|
2
2
|
export { META_GROUPS, TOOL_GROUPS, calculateTokenSavings, filterTools, getAllToolNames, getFilterSummary, getToolFilterFromEnv, getToolGroup, isToolEnabled, logger, parseToolFilter } from './chunk-ARLYSFSI.js';
|
|
3
3
|
|
|
4
4
|
// src/types/index.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memory-journal-mcp",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.1",
|
|
4
4
|
"description": "Project context management for AI-assisted development - Persistent knowledge graphs and intelligent context recall across fragmented AI threads",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -74,15 +74,16 @@
|
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@eslint/js": "^10.0.1",
|
|
77
|
-
"esbuild": "^0.28.0",
|
|
78
77
|
"@playwright/test": "^1.59.1",
|
|
79
78
|
"@types/better-sqlite3": "^7.6.13",
|
|
80
79
|
"@types/express": "^5.0.6",
|
|
81
80
|
"@types/node": "^25.6.0",
|
|
82
81
|
"@vitest/coverage-v8": "^4.1.3",
|
|
82
|
+
"esbuild": "^0.28.0",
|
|
83
83
|
"eslint": "^10.2.0",
|
|
84
84
|
"globals": "^17.4.0",
|
|
85
85
|
"tsup": "^8.5.1",
|
|
86
|
+
"tsx": "4.22.0",
|
|
86
87
|
"typescript": "^6.0.2",
|
|
87
88
|
"typescript-eslint": "^8.58.1",
|
|
88
89
|
"vitest": "^4.1.3"
|