mnemosyne-core 2.1.8 → 2.1.9

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.
@@ -3641,7 +3641,7 @@ function getVersion() {
3641
3641
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
3642
3642
  return pkg.version;
3643
3643
  } catch {
3644
- return "2.1.8";
3644
+ return "2.1.9";
3645
3645
  }
3646
3646
  }
3647
3647
  }
@@ -7602,7 +7602,7 @@ var require_package = __commonJS({
7602
7602
  "package.json"(exports, module2) {
7603
7603
  module2.exports = {
7604
7604
  name: "mnemosyne-core",
7605
- version: "2.1.8",
7605
+ version: "2.1.9",
7606
7606
  description: "Unified memory engine for AI agents \u2014 graph atoms, semantic search, and collaborative memory",
7607
7607
  logo: "logo.png",
7608
7608
  author: "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
@@ -8933,7 +8933,7 @@ function getVersion2() {
8933
8933
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
8934
8934
  return pkg.version;
8935
8935
  } catch {
8936
- return "2.1.8";
8936
+ return "2.1.9";
8937
8937
  }
8938
8938
  }
8939
8939
  }
@@ -9535,7 +9535,7 @@ function getVersion3() {
9535
9535
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
9536
9536
  return pkg.version;
9537
9537
  } catch {
9538
- return "2.1.8";
9538
+ return "2.1.9";
9539
9539
  }
9540
9540
  }
9541
9541
  }
@@ -10670,7 +10670,7 @@ var PKG_VERSION = (() => {
10670
10670
  const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
10671
10671
  return pkg.version;
10672
10672
  } catch {
10673
- return "2.1.8";
10673
+ return "2.1.9";
10674
10674
  }
10675
10675
  })();
10676
10676
  function handleHealth(store, pathname, method, res) {
@@ -10998,7 +10998,7 @@ var MnemosyneServer = class {
10998
10998
  const wss = new import_websocket_server.default({ server: this.httpServer });
10999
10999
  this.wsHandler = new WebSocketHandler(wss, this.store);
11000
11000
  }
11001
- const version = cfg?.server?.version || "2.1.8";
11001
+ const version = cfg?.server?.version || "2.1.9";
11002
11002
  this.httpServer.listen(port, () => {
11003
11003
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
11004
11004
  console.log(`Dashboard: http://${host}:${port}/dashboard`);
@@ -11056,7 +11056,7 @@ function getVersion4() {
11056
11056
  const { resolve: resolve14 } = __require("path");
11057
11057
  return JSON.parse(readFileSync8(resolve14(__dirname, "../../package.json"), "utf-8")).version;
11058
11058
  } catch {
11059
- return "2.1.8";
11059
+ return "2.1.9";
11060
11060
  }
11061
11061
  }
11062
11062
  async function startCommand(options) {
@@ -11348,7 +11348,7 @@ program2.name("mnemosyne").description("Mnemosyne \u2014 Your exocortex").versio
11348
11348
  try {
11349
11349
  return require_package().version;
11350
11350
  } catch {
11351
- return "2.1.8";
11351
+ return "2.1.9";
11352
11352
  }
11353
11353
  })());
11354
11354
  program2.command("init").description("Initialize a new Mnemosyne workspace").option("-d, --data-dir <path>", "Data directory", "./data").option("-c, --config <path>", "Config file path").action(initCommand);