vault-cortex 0.4.6-beta.26 → 0.5.0

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 CHANGED
@@ -36,7 +36,9 @@ Pull the latest image, re-create the container, and verify health:
36
36
  npx vault-cortex upgrade
37
37
  ```
38
38
 
39
- Also applies `.env` changes (`docker restart` does not re-read env files).
39
+ Your vault data, search index, and `.env` settings are preserved across
40
+ upgrades — only the server image is replaced. Also applies `.env` changes
41
+ (`docker restart` does not re-read env files).
40
42
 
41
43
  Prefer Docker Compose? The CLI uses `docker run` for simplicity, but the
42
44
  [deploy guides](https://github.com/aliasunder/vault-cortex/blob/main/deploy/)
package/dist/upgrade.js CHANGED
@@ -60,6 +60,7 @@ export const runUpgrade = async (flags, deps) => {
60
60
  return 1;
61
61
  }
62
62
  spinner.stop("Server is up — health check passed.");
63
+ prompts.log("Your vault data, search index, and settings are preserved.");
63
64
  prompts.outro("Upgrade complete.");
64
65
  return 0;
65
66
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.4.6-beta.26",
3
+ "version": "0.5.0",
4
4
  "description": "Set up a Vault Cortex MCP server for your Obsidian vault in one command: npx vault-cortex init",
5
5
  "license": "MIT",
6
6
  "type": "module",