@velvetmonkey/flywheel-memory 2.0.117 → 2.0.118

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16445,7 +16445,8 @@ async function executePolicy(policy, vaultPath2, variables, commit = false, sear
16445
16445
  }
16446
16446
  async function rollbackChanges(vaultPath2, originalContents, filesModified) {
16447
16447
  for (const filePath of filesModified) {
16448
- if (!validatePath(vaultPath2, filePath)) continue;
16448
+ const pathCheck = await validatePathSecure(vaultPath2, filePath);
16449
+ if (!pathCheck.valid) continue;
16449
16450
  const original = originalContents.get(filePath);
16450
16451
  const fullPath = path27.join(vaultPath2, filePath);
16451
16452
  if (original === null) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velvetmonkey/flywheel-memory",
3
- "version": "2.0.117",
3
+ "version": "2.0.118",
4
4
  "description": "MCP server that gives Claude full read/write access to your Obsidian vault. Select from 69 tools for search, backlinks, graph queries, mutations, agent memory, and hybrid semantic search.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",